pub struct FlameNode {
pub name: String,
pub count: u64,
pub children: Vec<FlameNode>,
}Expand description
A node in a flame graph tree.
Fields§
§name: StringFunction name.
count: u64Number of samples at or below this node.
children: Vec<FlameNode>Children nodes.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FlameNode
impl RefUnwindSafe for FlameNode
impl Send for FlameNode
impl Sync for FlameNode
impl Unpin for FlameNode
impl UnsafeUnpin for FlameNode
impl UnwindSafe for FlameNode
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