[][src]Struct rpmalloc_sys::rpmalloc_thread_span_statistics_t

#[repr(C)]
pub struct rpmalloc_thread_span_statistics_t {
    pub current: size_t,
    pub peak: size_t,
    pub to_global: size_t,
    pub from_global: size_t,
    pub to_cache: size_t,
    pub from_cache: size_t,
    pub to_reserved: size_t,
    pub from_reserved: size_t,
    pub map_calls: size_t,
}

Fields

current: size_t

Currently used number of spans

peak: size_t

High water mark of spans used

to_global: size_t

Number of spans transitioned to global cache

from_global: size_t

Number of spans transitioned from global cache

to_cache: size_t

Number of spans transitioned to thread cache

from_cache: size_t

Number of spans transitioned from thread cache

to_reserved: size_t

Number of spans transitioned to reserved state

from_reserved: size_t

Number of spans transitioned from reserved state

map_calls: size_t

Number of raw memory map calls (not hitting the reserve spans but resulting in actual OS mmap calls)

Trait Implementations

impl Clone for rpmalloc_thread_span_statistics_t[src]

impl Copy for rpmalloc_thread_span_statistics_t[src]

impl Default for rpmalloc_thread_span_statistics_t[src]

impl Debug for rpmalloc_thread_span_statistics_t[src]

Auto Trait Implementations

Blanket Implementations

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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]