[][src]Struct alloc_counter::AllocCounter

pub struct AllocCounter<A>(pub A);

An allocator that tracks allocations, reallocations, and deallocations in live code. It uses another backing allocator for actual heap management.

Trait Implementations

impl<A> GlobalAlloc for AllocCounter<A> where
    A: GlobalAlloc
[src]

unsafe fn alloc_zeroed(&self, layout: Layout) -> *mut u8
1.28.0
[src]

Behaves like alloc, but also ensures that the contents are set to zero before being returned. Read more

Auto Trait Implementations

impl<A> Send for AllocCounter<A> where
    A: Send

impl<A> Sync for AllocCounter<A> where
    A: Sync

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]