pub trait ComputeSccwhere Self: GraphNode,{ // Required method fn compute_scc(&self) -> Vec<Self::NodeId> ⓘ; }
A trait for a type that can compute its strongly-connected-component.