[][src]Struct stats_alloc::StatsAlloc

pub struct StatsAlloc<T: GlobalAlloc> { /* fields omitted */ }

An instrumenting middleware which keeps track of allocation, deallocation, and reallocation requests to the underlying global allocator.

Methods

impl StatsAlloc<System>[src]

pub const fn system() -> Self[src]

Provides access to an instrumented instance of the system allocator.

impl<T: GlobalAlloc> StatsAlloc<T>[src]

pub const fn new(inner: T) -> Self[src]

Provides access to an instrumented instance of the given global allocator.

pub fn stats(&self) -> Stats[src]

Takes a snapshot of the current view of the allocator statistics.

Trait Implementations

impl<T: Default + GlobalAlloc> Default for StatsAlloc<T>[src]

impl<T: Debug + GlobalAlloc> Debug for StatsAlloc<T>[src]

impl<'a, T: GlobalAlloc + 'a> GlobalAlloc for &'a StatsAlloc<T>[src]

impl<T: GlobalAlloc> GlobalAlloc for StatsAlloc<T>[src]

Auto Trait Implementations

impl<T> Send for StatsAlloc<T> where
    T: Send

impl<T> Sync for StatsAlloc<T> where
    T: Sync

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 = Infallible

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]