#[repr(C)]pub struct vm_statistics {Show 15 fields
pub free_count: u32,
pub active_count: u32,
pub inactive_count: u32,
pub wire_count: u32,
pub zero_fill_count: u32,
pub reactivations: u32,
pub pageins: u32,
pub pageouts: u32,
pub faults: u32,
pub cow_faults: u32,
pub lookups: u32,
pub hits: u32,
pub purgeable_count: u32,
pub purges: u32,
pub speculative_count: u32,
}
Fields§
§free_count: u32
§active_count: u32
§inactive_count: u32
§wire_count: u32
§zero_fill_count: u32
§reactivations: u32
§pageins: u32
§pageouts: u32
§faults: u32
§cow_faults: u32
§lookups: u32
§hits: u32
§purgeable_count: u32
§purges: u32
§speculative_count: u32
Trait Implementations§
Source§impl Clone for vm_statistics
impl Clone for vm_statistics
Source§fn clone(&self) -> vm_statistics
fn clone(&self) -> vm_statistics
Returns a copy 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 vm_statistics
impl Debug for vm_statistics
Source§impl Hash for vm_statistics
impl Hash for vm_statistics
Source§impl PartialEq for vm_statistics
impl PartialEq for vm_statistics
impl Copy for vm_statistics
impl Eq for vm_statistics
impl StructuralPartialEq for vm_statistics
Auto Trait Implementations§
impl Freeze for vm_statistics
impl RefUnwindSafe for vm_statistics
impl Send for vm_statistics
impl Sync for vm_statistics
impl Unpin for vm_statistics
impl UnwindSafe for vm_statistics
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more