Struct mach::vm_statistics::vm_statistics
source · #[repr(C)]pub struct vm_statistics {Show 15 fields
pub free_count: natural_t,
pub active_count: natural_t,
pub inactive_count: natural_t,
pub wire_count: natural_t,
pub zero_fill_count: natural_t,
pub reactivations: natural_t,
pub pageins: natural_t,
pub pageouts: natural_t,
pub faults: natural_t,
pub cow_faults: natural_t,
pub lookups: natural_t,
pub hits: natural_t,
pub purgeable_count: natural_t,
pub purges: natural_t,
pub speculative_count: natural_t,
}
Fields§
§free_count: natural_t
§active_count: natural_t
§inactive_count: natural_t
§wire_count: natural_t
§zero_fill_count: natural_t
§reactivations: natural_t
§pageins: natural_t
§pageouts: natural_t
§faults: natural_t
§cow_faults: natural_t
§lookups: natural_t
§hits: natural_t
§purgeable_count: natural_t
§purges: natural_t
§speculative_count: natural_t
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 Default for vm_statistics
impl Default for vm_statistics
source§fn default() -> vm_statistics
fn default() -> vm_statistics
Returns the “default value” for a type. Read more
source§impl Hash for vm_statistics
impl Hash for vm_statistics
source§impl Ord for vm_statistics
impl Ord for vm_statistics
source§fn cmp(&self, other: &vm_statistics) -> Ordering
fn cmp(&self, other: &vm_statistics) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<vm_statistics> for vm_statistics
impl PartialEq<vm_statistics> for vm_statistics
source§fn eq(&self, other: &vm_statistics) -> bool
fn eq(&self, other: &vm_statistics) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<vm_statistics> for vm_statistics
impl PartialOrd<vm_statistics> for vm_statistics
source§fn partial_cmp(&self, other: &vm_statistics) -> Option<Ordering>
fn partial_cmp(&self, other: &vm_statistics) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for vm_statistics
impl Eq for vm_statistics
impl StructuralEq for vm_statistics
impl StructuralPartialEq for vm_statistics
Auto Trait Implementations§
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