RecursiveDfs

Trait RecursiveDfs 

Source
pub trait RecursiveDfs: WithEdge {
    // Provided method
    fn recursive_dfs<V>(
        &self,
        vis: V,
    ) -> RecursiveDfsAlg<&Self, V, AllVertices<'_, Self>, NewVertexProp<'_, Self, Color>>
       where V: Visitor<Self> { ... }
}

Provided Methods§

Source

fn recursive_dfs<V>( &self, vis: V, ) -> RecursiveDfsAlg<&Self, V, AllVertices<'_, Self>, NewVertexProp<'_, Self, Color>>
where V: Visitor<Self>,

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§