#[repr(C)]
pub struct rpmalloc_thread_statistics_t { pub sizecache: size_t, pub spancache: size_t, pub thread_to_global: size_t, pub global_to_thread: size_t, pub span_use: [rpmalloc_thread_span_statistics_t; 32], pub size_use: [rpmalloc_thread_size_statistics_t; 128], }
Expand description

Memory statistics for a thread

Fields

sizecache: size_t

Current number of bytes available in thread size class caches for small and medium sizes (<32KiB)

spancache: size_t

Current number of bytes available in thread span caches for small and medium sizes (<32KiB)

thread_to_global: size_t

Total number of bytes transitioned from thread cache to global cache (only if ENABLE_STATISTICS=1)

global_to_thread: size_t

Total number of bytes transitioned from global cache to thread cache (only if ENABLE_STATISTICS=1)

span_use: [rpmalloc_thread_span_statistics_t; 32]

Per span count statistics (only if ENABLE_STATISTICS=1)

size_use: [rpmalloc_thread_size_statistics_t; 128]

Per size class statistics (only if ENABLE_STATISTICS=1)

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.