[][src]Struct daggy::walker::Take

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

A walker that yields the first n steps of this walk.

Trait Implementations

impl<G: Clone, Ix: Clone, W: Clone> Clone for Take<G, Ix, W>[src]

impl<G: Debug, Ix: Debug, W: Debug> Debug for Take<G, Ix, W>[src]

impl<G, Ix, W> Walker<G> for Take<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 Take<G, Ix, W> where
    G: RefUnwindSafe,
    Ix: RefUnwindSafe,
    W: RefUnwindSafe

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

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

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

impl<G, Ix, W> UnwindSafe for Take<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.