[][src]Struct alloc_compose::stats::AtomicCounter

pub struct AtomicCounter { /* fields omitted */ }

An atomic counter for collectiong statistics which can be shared between threads.

Implementations

impl AtomicCounter[src]

pub fn num_allocs(&self) -> u64[src]

Returns the number of alloc calls.

pub fn num_deallocs(&self) -> u64[src]

Returns the number of dealloc calls.

pub fn num_grows(&self) -> u64[src]

Returns the number of grow calls.

pub fn num_shrinks(&self) -> u64[src]

Returns the number of shrink calls.

pub fn num_owns(&self) -> u64[src]

Returns the number of owns calls.

Trait Implementations

impl CallbackRef for AtomicCounter[src]

impl Debug for AtomicCounter[src]

impl Default for AtomicCounter[src]

impl PartialEq<AtomicCounter> for Counter[src]

impl PartialEq<AtomicCounter> for AtomicCounter[src]

impl PartialEq<Counter> for AtomicCounter[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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.