pub struct DfgNode {
pub activity: String,
pub events: usize,
pub objects: usize,
pub starts: usize,
pub ends: usize,
}Expand description
An activity node of one type’s DFG.
Fields§
§activity: String§events: usizeTrace steps with this activity.
objects: usizeDistinct objects touching the activity.
starts: usizeTraces starting here.
ends: usizeTraces ending here.
Trait Implementations§
impl Eq for DfgNode
impl StructuralPartialEq for DfgNode
Auto Trait Implementations§
impl Freeze for DfgNode
impl RefUnwindSafe for DfgNode
impl Send for DfgNode
impl Sync for DfgNode
impl Unpin for DfgNode
impl UnsafeUnpin for DfgNode
impl UnwindSafe for DfgNode
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