pub struct TrackingAllocator;
Expand description
A custom allocator that tracks memory allocations and deallocations.
This allocator wraps the system allocator and records all allocation and deallocation events through the global memory tracker.
Implementations§
Trait Implementations§
Source§impl Default for TrackingAllocator
impl Default for TrackingAllocator
Source§impl GlobalAlloc for TrackingAllocator
impl GlobalAlloc for TrackingAllocator
Source§unsafe fn alloc(&self, layout: Layout) -> *mut u8
unsafe fn alloc(&self, layout: Layout) -> *mut u8
Allocates memory as described by the given
layout
. Read moreAuto Trait Implementations§
impl Freeze for TrackingAllocator
impl RefUnwindSafe for TrackingAllocator
impl Send for TrackingAllocator
impl Sync for TrackingAllocator
impl Unpin for TrackingAllocator
impl UnwindSafe for TrackingAllocator
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