pub struct PoolStats {
pub lww_register_allocations: usize,
pub lww_register_deallocations: usize,
pub lww_map_allocations: usize,
pub lww_map_deallocations: usize,
pub gcounter_allocations: usize,
pub gcounter_deallocations: usize,
pub pool_hits: usize,
pub pool_misses: usize,
}Expand description
Pool usage statistics
Fields§
§lww_register_allocations: usize§lww_register_deallocations: usize§lww_map_allocations: usize§lww_map_deallocations: usize§gcounter_allocations: usize§gcounter_deallocations: usize§pool_hits: usize§pool_misses: usizeTrait Implementations§
Auto Trait Implementations§
impl Freeze for PoolStats
impl RefUnwindSafe for PoolStats
impl Send for PoolStats
impl Sync for PoolStats
impl Unpin for PoolStats
impl UnwindSafe for PoolStats
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