#[repr(C)]pub struct AllocatorStatisticsT {
pub system_allocation_count: u64,
pub system_allocated_bytes: u64,
pub vm_reserved: u64,
pub vm_committed: u64,
pub system_churn_allocation_count: u64,
pub system_churn_allocated_bytes: u64,
pub vm_churn_committed: u64,
}Fields§
§system_allocation_count: u64§system_allocated_bytes: u64§vm_reserved: u64§vm_committed: u64§system_churn_allocation_count: u64§system_churn_allocated_bytes: u64§vm_churn_committed: u64Trait Implementations§
Source§impl Clone for AllocatorStatisticsT
impl Clone for AllocatorStatisticsT
Source§fn clone(&self) -> AllocatorStatisticsT
fn clone(&self) -> AllocatorStatisticsT
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 Default for AllocatorStatisticsT
impl Default for AllocatorStatisticsT
Source§fn default() -> AllocatorStatisticsT
fn default() -> AllocatorStatisticsT
Returns the “default value” for a type. Read more
impl Copy for AllocatorStatisticsT
Auto Trait Implementations§
impl Freeze for AllocatorStatisticsT
impl RefUnwindSafe for AllocatorStatisticsT
impl Send for AllocatorStatisticsT
impl Sync for AllocatorStatisticsT
impl Unpin for AllocatorStatisticsT
impl UnwindSafe for AllocatorStatisticsT
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