Struct cdp::heap_profiler::SamplingHeapProfileNode [] [src]

pub struct SamplingHeapProfileNode<'a> {
    pub call_frame: CallFrame<'a>,
    pub self_size: f64,
    pub children: Vec<Box<SamplingHeapProfileNode<'a>>>,
}

[Experimental] Sampling Heap Profile node. Holds callsite information, allocation statistics and child nodes.

Fields

Function location.

Allocations size in bytes for the node excluding children.

Child nodes.

Trait Implementations

impl<'a> Clone for SamplingHeapProfileNode<'a>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<'a> Debug for SamplingHeapProfileNode<'a>
[src]

[src]

Formats the value using the given formatter.

impl<'a> PartialEq for SamplingHeapProfileNode<'a>
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.