[][src]Struct stats_alloc::Region

pub struct Region<'a, T: GlobalAlloc + 'a> { /* fields omitted */ }

A snapshot of the allocation statistics, which can be used to determine allocation changes while the Region is alive.

Methods

impl<'a, T: GlobalAlloc + 'a> Region<'a, T>[src]

pub fn new(alloc: &'a StatsAlloc<T>) -> Self[src]

Creates a new region using statistics from the given instrumented allocator.

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

Returns the statistics as of instantiation or the last reset.

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

Returns the difference between the currently reported statistics and those provided by initial().

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

Returns the difference between the currently reported statistics and those provided by initial(), resetting initial to the latest reported statistics.

pub fn reset(&mut self)[src]

Resets the initial initial to the latest reported statistics from the referenced allocator.

Trait Implementations

impl<'a, T: Debug + GlobalAlloc + 'a> Debug for Region<'a, T>[src]

Auto Trait Implementations

impl<'a, T> Send for Region<'a, T> where
    T: Sync

impl<'a, T> Sync for Region<'a, 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]