pub struct SymbolicatedCallSite {
pub count: u64,
pub total_bytes: u64,
pub frames: Vec<SymbolicatedFrame>,
}Available on crate feature
symbolicate only.Expand description
One symbolicated call site (counterpart of
CallSiteStats).
Contains the aggregated counters from the raw report plus a vector of resolved frames in top-of-stack-first order.
Fields§
§count: u64Allocations attributed to this site.
total_bytes: u64Total bytes allocated at this site.
frames: Vec<SymbolicatedFrame>Resolved frames, top of stack first. May contain frames
with inlined = true representing inlined call sites
expanded from a single physical return address.
Trait Implementations§
Source§impl Clone for SymbolicatedCallSite
impl Clone for SymbolicatedCallSite
Source§fn clone(&self) -> SymbolicatedCallSite
fn clone(&self) -> SymbolicatedCallSite
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for SymbolicatedCallSite
impl RefUnwindSafe for SymbolicatedCallSite
impl Send for SymbolicatedCallSite
impl Sync for SymbolicatedCallSite
impl Unpin for SymbolicatedCallSite
impl UnsafeUnpin for SymbolicatedCallSite
impl UnwindSafe for SymbolicatedCallSite
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