pub struct AccountingAllocator<InnerAllocator> { /* private fields */ }
Expand description
Install this as the global allocator to get memory usage tracking.
Use set_tracking_callstacks
or turn_on_tracking_if_env_var
to turn on memory tracking.
Collect the stats with tracking_stats
.
Usage:
use re_memory::AccountingAllocator;
#[global_allocator]
static GLOBAL: AccountingAllocator<std::alloc::System> = AccountingAllocator::new(std::alloc::System);
Implementations§
source§impl<InnerAllocator> AccountingAllocator<InnerAllocator>
impl<InnerAllocator> AccountingAllocator<InnerAllocator>
Trait Implementations§
source§impl<InnerAllocator: Default> Default for AccountingAllocator<InnerAllocator>
impl<InnerAllocator: Default> Default for AccountingAllocator<InnerAllocator>
source§fn default() -> AccountingAllocator<InnerAllocator>
fn default() -> AccountingAllocator<InnerAllocator>
Returns the “default value” for a type. Read more
source§impl<InnerAllocator: GlobalAlloc> GlobalAlloc for AccountingAllocator<InnerAllocator>
impl<InnerAllocator: GlobalAlloc> GlobalAlloc for AccountingAllocator<InnerAllocator>
source§unsafe fn alloc(&self, layout: Layout) -> *mut u8
unsafe fn alloc(&self, layout: Layout) -> *mut u8
Allocate memory as described by the given
layout
. Read moresource§unsafe fn alloc_zeroed(&self, layout: Layout) -> *mut u8
unsafe fn alloc_zeroed(&self, layout: Layout) -> *mut u8
Behaves like
alloc
, but also ensures that the contents
are set to zero before being returned. Read moreAuto Trait Implementations§
impl<InnerAllocator> Freeze for AccountingAllocator<InnerAllocator>where
InnerAllocator: Freeze,
impl<InnerAllocator> RefUnwindSafe for AccountingAllocator<InnerAllocator>where
InnerAllocator: RefUnwindSafe,
impl<InnerAllocator> Send for AccountingAllocator<InnerAllocator>where
InnerAllocator: Send,
impl<InnerAllocator> Sync for AccountingAllocator<InnerAllocator>where
InnerAllocator: Sync,
impl<InnerAllocator> Unpin for AccountingAllocator<InnerAllocator>where
InnerAllocator: Unpin,
impl<InnerAllocator> UnwindSafe for AccountingAllocator<InnerAllocator>where
InnerAllocator: UnwindSafe,
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more