pub struct VmStats {
pub free_reserved: usize,
pub cache_count: Gutex<usize>,
pub free_count: Gutex<usize>,
pub interrupt_free_min: Gutex<usize>,
}
Expand description
Contains statistics for a VM.
This is a subset of vmmeter
structure.
Fields§
§free_reserved: usize
§cache_count: Gutex<usize>
§free_count: Gutex<usize>
§interrupt_free_min: Gutex<usize>
Auto Trait Implementations§
impl !Freeze for VmStats
impl !RefUnwindSafe for VmStats
impl Send for VmStats
impl Sync for VmStats
impl Unpin 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