pub struct GlobalPoolStats {
pub total_nodes: usize,
pub free_nodes: usize,
pub allocated_nodes: usize,
pub total_allocations: usize,
pub total_deallocations: usize,
}Expand description
Global pool statistics
Fields§
§total_nodes: usize§free_nodes: usize§allocated_nodes: usize§total_allocations: usize§total_deallocations: usizeTrait Implementations§
Source§impl Clone for GlobalPoolStats
impl Clone for GlobalPoolStats
Source§fn clone(&self) -> GlobalPoolStats
fn clone(&self) -> GlobalPoolStats
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GlobalPoolStats
impl Debug for GlobalPoolStats
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