Struct libc::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

source§

fn clone(&self) -> vm_statistics

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Copy for vm_statistics

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.