pub struct GlobalPoolStats {
pub total_allocations: AtomicU64,
pub total_deallocations: AtomicU64,
pub cross_cpu_requests: AtomicU64,
pub emergency_allocations: AtomicU64,
}
Fields§
§total_allocations: AtomicU64
§total_deallocations: AtomicU64
§cross_cpu_requests: AtomicU64
§emergency_allocations: AtomicU64
Trait Implementations§
Source§impl Default for GlobalPoolStats
impl Default for GlobalPoolStats
Source§fn default() -> GlobalPoolStats
fn default() -> GlobalPoolStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl !Freeze for GlobalPoolStats
impl RefUnwindSafe for GlobalPoolStats
impl Send for GlobalPoolStats
impl Sync for GlobalPoolStats
impl Unpin for GlobalPoolStats
impl UnwindSafe for GlobalPoolStats
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