[][src]Struct alloc_compose::stats::FilteredCounter

pub struct FilteredCounter { /* fields omitted */ }

A counter for collectiong and filtering statistics.

Implementations

impl FilteredCounter[src]

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

Returns the total number of alloc calls.

pub fn num_allocs_filter(
    &self,
    init: impl Into<AllocInitFilter>,
    result: impl Into<ResultFilter>
) -> u64
[src]

Returns the filtered number of alloc calls.

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

Returns the total number of dealloc calls.

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

Returns the total number of grow calls.

pub fn num_grows_filter(
    &self,
    placement: impl Into<ReallocPlacementFilter>,
    init: impl Into<AllocInitFilter>,
    result: impl Into<ResultFilter>
) -> u64
[src]

Returns the filtered number of grow calls.

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

Returns the total number of shrink calls.

pub fn num_shrinks_filter(
    &self,
    placement: ReallocPlacementFilter,
    result: impl Into<ResultFilter>
) -> u64
[src]

Returns the filtered number of shrink calls.

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

Returns the total number of owns calls.

pub fn num_owns_filter(&self, success: bool) -> u64[src]

Returns the filtered number of owns calls.

Trait Implementations

impl CallbackRef for FilteredCounter[src]

impl Debug for FilteredCounter[src]

impl Default for FilteredCounter[src]

impl Eq for FilteredCounter[src]

impl PartialEq<FilteredAtomicCounter> for FilteredCounter[src]

impl PartialEq<FilteredCounter> for FilteredCounter[src]

impl PartialEq<FilteredCounter> for FilteredAtomicCounter[src]

impl StructuralEq for FilteredCounter[src]

impl StructuralPartialEq for FilteredCounter[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.