pub struct VmStats {
pub free_reserved: usize,
pub cache_min: usize,
pub cache_count: usize,
pub free_count: usize,
pub interrupt_free_min: usize,
pub wire_count: usize,
}Expand description
Contains statistics for a VM.
This struct MUST be locked before other VM locks.
This is a subset of vmmeter structure.
Fields§
§free_reserved: usize§cache_min: usize§cache_count: usize§free_count: usize§interrupt_free_min: usize§wire_count: usizeAuto Trait Implementations§
impl Freeze for VmStats
impl RefUnwindSafe for VmStats
impl Send for VmStats
impl Sync for VmStats
impl Unpin for VmStats
impl UnsafeUnpin for VmStats
impl UnwindSafe for VmStats
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