[][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]

Auto Trait Implementations

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

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

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

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

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

Blanket Implementations

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

impl<T> From<T> for T[src]

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

type Error = !

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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