[−][src]Struct daggy::walker::Skip
A walker that skips the first n steps of this walk, and then yields all further steps.
Trait Implementations
impl<G: Clone, Ix: Clone, W: Clone> Clone for Skip<G, Ix, W>
[src]
impl<G: Debug, Ix: Debug, W: Debug> Debug for Skip<G, Ix, W>
[src]
impl<G, Ix, W> Walker<G> for Skip<G, Ix, W> where
Ix: IndexType,
W: Walker<G, Index = Ix>,
[src]
Ix: IndexType,
W: Walker<G, Index = Ix>,
type Index = Ix
The unsigned integer type used for node and edge indices.
fn next(&mut self, graph: &G) -> Option<IndexPair<Ix>>
[src]
fn next_edge(&mut self, graph: &G) -> Option<EdgeIndex<Self::Index>>
[src]
fn next_node(&mut self, graph: &G) -> Option<NodeIndex<Self::Index>>
[src]
fn count(self, graph: &G) -> usize where
Self: Sized,
[src]
Self: Sized,
fn last(self, graph: &G) -> Option<IndexPair<Self::Index>> where
Self: Sized,
[src]
Self: Sized,
fn last_edge(self, graph: &G) -> Option<EdgeIndex<Self::Index>> where
Self: Sized,
[src]
Self: Sized,
fn last_node(self, graph: &G) -> Option<NodeIndex<Self::Index>> where
Self: Sized,
[src]
Self: Sized,
fn nth(self, graph: &G, n: usize) -> Option<IndexPair<Self::Index>> where
Self: Sized,
[src]
Self: Sized,
fn nth_edge(self, graph: &G, n: usize) -> Option<EdgeIndex<Self::Index>> where
Self: Sized,
[src]
Self: Sized,
fn nth_node(self, graph: &G, n: usize) -> Option<NodeIndex<Self::Index>> where
Self: Sized,
[src]
Self: Sized,
fn chain<O>(self, other: O) -> Chain<G, Self::Index, Self, O> where
Self: Sized,
O: Walker<G, Index = Self::Index>,
[src]
Self: Sized,
O: Walker<G, Index = Self::Index>,
fn filter<P>(self, predicate: P) -> Filter<Self, P> where
Self: Sized,
P: FnMut(&G, EdgeIndex<Self::Index>, NodeIndex<Self::Index>) -> bool,
[src]
Self: Sized,
P: FnMut(&G, EdgeIndex<Self::Index>, NodeIndex<Self::Index>) -> bool,
fn peekable(self) -> Peekable<G, Self::Index, Self> where
Self: Sized,
[src]
Self: Sized,
fn skip_while<P>(self, predicate: P) -> SkipWhile<Self, P> where
Self: Sized,
P: FnMut(&G, EdgeIndex<Self::Index>, NodeIndex<Self::Index>) -> bool,
[src]
Self: Sized,
P: FnMut(&G, EdgeIndex<Self::Index>, NodeIndex<Self::Index>) -> bool,
fn take_while<P>(self, predicate: P) -> TakeWhile<Self, P> where
Self: Sized,
P: FnMut(&G, EdgeIndex<Self::Index>, NodeIndex<Self::Index>) -> bool,
[src]
Self: Sized,
P: FnMut(&G, EdgeIndex<Self::Index>, NodeIndex<Self::Index>) -> bool,
fn skip(self, n: usize) -> Skip<G, Self::Index, Self> where
Self: Sized,
[src]
Self: Sized,
fn take(self, n: usize) -> Take<G, Self::Index, Self> where
Self: Sized,
[src]
Self: Sized,
fn all<P>(&mut self, graph: &G, predicate: P) -> bool where
P: FnMut(&G, EdgeIndex<Self::Index>, NodeIndex<Self::Index>) -> bool,
[src]
P: FnMut(&G, EdgeIndex<Self::Index>, NodeIndex<Self::Index>) -> bool,
fn any<P>(&mut self, graph: &G, predicate: P) -> bool where
P: FnMut(&G, EdgeIndex<Self::Index>, NodeIndex<Self::Index>) -> bool,
[src]
P: FnMut(&G, EdgeIndex<Self::Index>, NodeIndex<Self::Index>) -> bool,
fn find<P>(&mut self, graph: &G, predicate: P) -> Option<IndexPair<Self::Index>> where
P: FnMut(&G, EdgeIndex<Self::Index>, NodeIndex<Self::Index>) -> bool,
[src]
P: FnMut(&G, EdgeIndex<Self::Index>, NodeIndex<Self::Index>) -> bool,
fn find_edge<P>(
&mut self,
graph: &G,
predicate: P
) -> Option<EdgeIndex<Self::Index>> where
P: FnMut(&G, EdgeIndex<Self::Index>, NodeIndex<Self::Index>) -> bool,
[src]
&mut self,
graph: &G,
predicate: P
) -> Option<EdgeIndex<Self::Index>> where
P: FnMut(&G, EdgeIndex<Self::Index>, NodeIndex<Self::Index>) -> bool,
fn find_node<P>(
&mut self,
graph: &G,
predicate: P
) -> Option<NodeIndex<Self::Index>> where
P: FnMut(&G, EdgeIndex<Self::Index>, NodeIndex<Self::Index>) -> bool,
[src]
&mut self,
graph: &G,
predicate: P
) -> Option<NodeIndex<Self::Index>> where
P: FnMut(&G, EdgeIndex<Self::Index>, NodeIndex<Self::Index>) -> bool,
fn cycle(self) -> Cycle<G, Self::Index, Self> where
Self: Clone + Sized,
[src]
Self: Clone + Sized,
fn fold<B, F>(self, init: B, graph: &G, f: F) -> B where
Self: Sized,
F: FnMut(B, &G, EdgeIndex<Self::Index>, NodeIndex<Self::Index>) -> B,
[src]
Self: Sized,
F: FnMut(B, &G, EdgeIndex<Self::Index>, NodeIndex<Self::Index>) -> B,
fn inspect<F>(self, f: F) -> Inspect<Self, F> where
Self: Sized,
F: FnMut(&G, EdgeIndex<Self::Index>, NodeIndex<Self::Index>),
[src]
Self: Sized,
F: FnMut(&G, EdgeIndex<Self::Index>, NodeIndex<Self::Index>),
fn iter(self, graph: &G) -> Iter<'_, G, Self::Index, Self>ⓘ where
Self: Sized,
[src]
Self: Sized,
fn iter_weights(self, graph: &G) -> IterWeights<'_, G, Self::Index, Self>ⓘ where
Self: Sized,
[src]
Self: Sized,
Auto Trait Implementations
impl<G, Ix, W> RefUnwindSafe for Skip<G, Ix, W> where
G: RefUnwindSafe,
Ix: RefUnwindSafe,
W: RefUnwindSafe,
G: RefUnwindSafe,
Ix: RefUnwindSafe,
W: RefUnwindSafe,
impl<G, Ix, W> Send for Skip<G, Ix, W> where
G: Send,
Ix: Send,
W: Send,
G: Send,
Ix: Send,
W: Send,
impl<G, Ix, W> Sync for Skip<G, Ix, W> where
G: Sync,
Ix: Sync,
W: Sync,
G: Sync,
Ix: Sync,
W: Sync,
impl<G, Ix, W> Unpin for Skip<G, Ix, W> where
G: Unpin,
Ix: Unpin,
W: Unpin,
G: Unpin,
Ix: Unpin,
W: Unpin,
impl<G, Ix, W> UnwindSafe for Skip<G, Ix, W> where
G: UnwindSafe,
Ix: UnwindSafe,
W: UnwindSafe,
G: UnwindSafe,
Ix: UnwindSafe,
W: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,