Trait rustc_data_structures::graph::WithPredecessors
source · pub trait WithPredecessors: DirectedGraphwhere
Self: for<'graph> GraphPredecessors<'graph, Item = Self::Node>,{
// Required method
fn predecessors(
&self,
node: Self::Node
) -> <Self as GraphPredecessors<'_>>::Iter;
}