[][src]Struct daggy::walker::Chain

pub struct Chain<G, Ix, A, B> { /* fields omitted */ }

Walks the entirety of a before walking the entirety of b.

Trait Implementations

impl<G: Clone, Ix: Clone, A: Clone, B: Clone> Clone for Chain<G, Ix, A, B>[src]

impl<G: Debug, Ix: Debug, A: Debug, B: Debug> Debug for Chain<G, Ix, A, B>[src]

impl<G, Ix, A, B> Walker<G> for Chain<G, Ix, A, B> where
    Ix: IndexType,
    A: Walker<G, Index = Ix>,
    B: Walker<G, Index = Ix>, 
[src]

type Index = Ix

The unsigned integer type used for node and edge indices.

Auto Trait Implementations

impl<G, Ix, A, B> RefUnwindSafe for Chain<G, Ix, A, B> where
    A: RefUnwindSafe,
    B: RefUnwindSafe,
    G: RefUnwindSafe,
    Ix: RefUnwindSafe

impl<G, Ix, A, B> Send for Chain<G, Ix, A, B> where
    A: Send,
    B: Send,
    G: Send,
    Ix: Send

impl<G, Ix, A, B> Sync for Chain<G, Ix, A, B> where
    A: Sync,
    B: Sync,
    G: Sync,
    Ix: Sync

impl<G, Ix, A, B> Unpin for Chain<G, Ix, A, B> where
    A: Unpin,
    B: Unpin,
    G: Unpin,
    Ix: Unpin

impl<G, Ix, A, B> UnwindSafe for Chain<G, Ix, A, B> where
    A: UnwindSafe,
    B: UnwindSafe,
    G: UnwindSafe,
    Ix: 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.