pub struct SccNode {
pub name: String,
pub callees: Vec<String>,
pub disc: Option<u32>,
pub low: Option<u32>,
pub on_stack: bool,
}Expand description
A node in the call-graph SCC analysis.
Fields§
§name: String§callees: Vec<String>§disc: Option<u32>§low: Option<u32>§on_stack: boolImplementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SccNode
impl RefUnwindSafe for SccNode
impl Send for SccNode
impl Sync for SccNode
impl Unpin for SccNode
impl UnsafeUnpin for SccNode
impl UnwindSafe for SccNode
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