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

Provided Methods

Implementors