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

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

Required Methods

Implementations on Foreign Types

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

Implementors