pub struct HeapAllocSummary {
pub alloc_id: u32,
pub site: String,
pub may_escape: bool,
pub is_unique: bool,
pub estimated_size: Option<u64>,
}Expand description
Heap allocation summary
Fields§
§alloc_id: u32§site: String§may_escape: bool§is_unique: bool§estimated_size: Option<u64>Trait Implementations§
Source§impl Clone for HeapAllocSummary
impl Clone for HeapAllocSummary
Source§fn clone(&self) -> HeapAllocSummary
fn clone(&self) -> HeapAllocSummary
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for HeapAllocSummary
impl Debug for HeapAllocSummary
Auto Trait Implementations§
impl Freeze for HeapAllocSummary
impl RefUnwindSafe for HeapAllocSummary
impl Send for HeapAllocSummary
impl Sync for HeapAllocSummary
impl Unpin for HeapAllocSummary
impl UnsafeUnpin for HeapAllocSummary
impl UnwindSafe for HeapAllocSummary
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