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
call_frame: CallFrame<'a>
Function location.
self_size: f64
Allocations size in bytes for the node excluding children.
children: Vec<Box<SamplingHeapProfileNode<'a>>>
Child nodes.
Trait Implementations
impl<'a> Clone for SamplingHeapProfileNode<'a>
[src]
fn clone(&self) -> SamplingHeapProfileNode<'a>
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl<'a> Debug for SamplingHeapProfileNode<'a>
[src]
impl<'a> PartialEq for SamplingHeapProfileNode<'a>
[src]
fn eq(&self, __arg_0: &SamplingHeapProfileNode<'a>) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &SamplingHeapProfileNode<'a>) -> bool
[src]
This method tests for !=
.