[][src]Trait rustc_data_structures::graph::WithSuccessors

pub trait WithSuccessors: DirectedGraph where
    Self: for<'graph> GraphSuccessors<'graph, Item = Self::Node>, 
{ fn successors(&self, node: Self::Node) -> Self::Iter; fn depth_first_search(&self, from: Self::Node) -> DepthFirstSearch<Self>
    where
        Self: WithNumNodes
, { ... } }

Required methods

fn successors(&self, node: Self::Node) -> Self::Iter

Loading content...

Provided methods

Loading content...

Implementations on Foreign Types

impl<'graph, G: WithSuccessors> WithSuccessors for &'graph G[src]

Loading content...

Implementors

impl<N: Idx> WithSuccessors for VecGraph<N>[src]

impl<N: Idx, S: Idx> WithSuccessors for Sccs<N, S>[src]

Loading content...