[][src]Struct daggy::Parents

pub struct Parents<N, E, Ix: IndexType> { /* fields omitted */ }

A Walker type that can be used to step through the parents of some child node.

Trait Implementations

impl<N, E, Ix> Walker<Dag<N, E, Ix>> for Parents<N, E, Ix> where
    Ix: IndexType
[src]

type Index = Ix

The unsigned integer type used for node and edge indices.

Auto Trait Implementations

impl<N, E, Ix> RefUnwindSafe for Parents<N, E, Ix> where
    E: RefUnwindSafe,
    Ix: RefUnwindSafe,
    N: RefUnwindSafe

impl<N, E, Ix> Send for Parents<N, E, Ix> where
    E: Send,
    Ix: Send,
    N: Send

impl<N, E, Ix> Sync for Parents<N, E, Ix> where
    E: Sync,
    Ix: Sync,
    N: Sync

impl<N, E, Ix> Unpin for Parents<N, E, Ix> where
    E: Unpin,
    Ix: Unpin,
    N: Unpin

impl<N, E, Ix> UnwindSafe for Parents<N, E, Ix> where
    E: UnwindSafe,
    Ix: UnwindSafe,
    N: 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, 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.