pub struct SccInfo {
pub id: usize,
pub members: Vec<NodeIndex>,
pub status: SccStatus,
}Expand description
Information about one strongly-connected component.
Fields§
§id: usizeOrdinal within SccResult::components (also the weight of its DAG node).
members: Vec<NodeIndex>Node indices in the original graph belonging to this SCC.
status: SccStatusTrait Implementations§
Auto Trait Implementations§
impl Freeze for SccInfo
impl RefUnwindSafe for SccInfo
impl Send for SccInfo
impl Sync for SccInfo
impl Unpin for SccInfo
impl UnsafeUnpin for SccInfo
impl UnwindSafe for SccInfo
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more