pub struct GlobalPoolStatistics {
pub general_pool: PoolStatistics,
pub simd_pool: PoolStatistics,
pub large_buffer_pool: PoolStatistics,
pub small_buffer_pool: PoolStatistics,
}Expand description
Comprehensive statistics from all memory pools
Fields§
§general_pool: PoolStatisticsStatistics for the general purpose memory pool (64KB buffers)
simd_pool: PoolStatisticsStatistics for the SIMD-optimized memory pool (32KB buffers)
large_buffer_pool: PoolStatisticsStatistics for the large buffer memory pool (1MB buffers)
small_buffer_pool: PoolStatisticsStatistics for the small buffer memory pool (4KB buffers)
Trait Implementations§
Source§impl Clone for GlobalPoolStatistics
impl Clone for GlobalPoolStatistics
Source§fn clone(&self) -> GlobalPoolStatistics
fn clone(&self) -> GlobalPoolStatistics
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for GlobalPoolStatistics
impl RefUnwindSafe for GlobalPoolStatistics
impl Send for GlobalPoolStatistics
impl Sync for GlobalPoolStatistics
impl Unpin for GlobalPoolStatistics
impl UnwindSafe for GlobalPoolStatistics
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more