Struct accounting_allocator::AllTimeAllocStats 
source · [−]Expand description
Statistics for allocations and deallocations made with an AccountingAlloc for all time, across all threads.
Fields
alloc: usizeCount of allocated bytes.
dealloc: usizeCount of deallocated bytes.
largest_alloc: usizeLargest allocation size in bytes.
Trait Implementations
sourceimpl Clone for AllTimeAllocStats
 
impl Clone for AllTimeAllocStats
sourcefn clone(&self) -> AllTimeAllocStats
 
fn clone(&self) -> AllTimeAllocStats
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moresourceimpl Debug for AllTimeAllocStats
 
impl Debug for AllTimeAllocStats
sourceimpl Default for AllTimeAllocStats
 
impl Default for AllTimeAllocStats
sourcefn default() -> AllTimeAllocStats
 
fn default() -> AllTimeAllocStats
Returns the “default value” for a type. Read more
sourceimpl PartialEq<AllTimeAllocStats> for AllTimeAllocStats
 
impl PartialEq<AllTimeAllocStats> for AllTimeAllocStats
sourcefn eq(&self, other: &AllTimeAllocStats) -> bool
 
fn eq(&self, other: &AllTimeAllocStats) -> bool
impl Copy for AllTimeAllocStats
impl Eq for AllTimeAllocStats
impl StructuralEq for AllTimeAllocStats
impl StructuralPartialEq for AllTimeAllocStats
Auto Trait Implementations
impl RefUnwindSafe for AllTimeAllocStats
impl Send for AllTimeAllocStats
impl Sync for AllTimeAllocStats
impl Unpin for AllTimeAllocStats
impl UnwindSafe for AllTimeAllocStats
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more