[][src]Struct daggy::walker::Skip

pub struct Skip<G, Ix, W> { /* fields omitted */ }

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]

type Index = Ix

The unsigned integer type used for node and edge indices.

Auto Trait Implementations

impl<G, Ix, W> RefUnwindSafe for Skip<G, Ix, W> where
    G: RefUnwindSafe,
    Ix: RefUnwindSafe,
    W: RefUnwindSafe

impl<G, Ix, W> Send for Skip<G, Ix, W> where
    G: Send,
    Ix: Send,
    W: Send

impl<G, Ix, W> Sync for Skip<G, Ix, W> where
    G: Sync,
    Ix: Sync,
    W: Sync

impl<G, Ix, W> Unpin for Skip<G, Ix, W> where
    G: Unpin,
    Ix: Unpin,
    W: Unpin

impl<G, Ix, W> UnwindSafe for Skip<G, Ix, W> where
    G: UnwindSafe,
    Ix: UnwindSafe,
    W: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.