[][src]Struct petgraph::algo::DfsSpace

pub struct DfsSpace<N, VM> { /* fields omitted */ }

Workspace for a graph traversal.

Implementations

impl<N, VM> DfsSpace<N, VM> where
    N: Copy + PartialEq,
    VM: VisitMap<N>, 
[src]

pub fn new<G>(g: G) -> Self where
    G: GraphRef + Visitable<NodeId = N, Map = VM>, 
[src]

Trait Implementations

impl<N: Clone, VM: Clone> Clone for DfsSpace<N, VM>[src]

impl<N: Debug, VM: Debug> Debug for DfsSpace<N, VM>[src]

impl<N, VM> Default for DfsSpace<N, VM> where
    VM: VisitMap<N> + Default
[src]

Auto Trait Implementations

impl<N, VM> RefUnwindSafe for DfsSpace<N, VM> where
    N: RefUnwindSafe,
    VM: RefUnwindSafe

impl<N, VM> Send for DfsSpace<N, VM> where
    N: Send,
    VM: Send

impl<N, VM> Sync for DfsSpace<N, VM> where
    N: Sync,
    VM: Sync

impl<N, VM> Unpin for DfsSpace<N, VM> where
    N: Unpin,
    VM: Unpin

impl<N, VM> UnwindSafe for DfsSpace<N, VM> where
    N: UnwindSafe,
    VM: 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.