Skip to main content

vm_statistics64

Struct vm_statistics64 

Source
#[repr(C, packed(8))]
pub struct vm_statistics64 {
Show 57 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: u64, pub reactivations: u64, pub pageins: u64, pub pageouts: u64, pub faults: u64, pub cow_faults: u64, pub lookups: u64, pub hits: u64, pub purges: u64, pub purgeable_count: natural_t, pub speculative_count: natural_t, pub decompressions: u64, pub compressions: u64, pub swapins: u64, pub swapouts: u64, pub compressor_page_count: natural_t, pub throttled_count: natural_t, pub external_page_count: natural_t, pub internal_page_count: natural_t, pub total_uncompressed_pages_in_compressor: u64, pub swapped_count: u64, pub total_tag_storage_pages: u64, pub nontag_pageable_tag_storage_pages: u64, pub nontag_wired_tag_storage_pages: u64, pub free_tag_storage_pages: u64, pub tag_storing_tag_storage_pages: u64, pub total_tagged_pages: u64, pub resident_tagged_pages: u64, pub compressed_tagged_pages: u64, pub tagged_compressions: u64, pub tagged_decompressions: u64, pub compressed_tag_storage_bytes: u64, pub speculative_pages_created: u64, pub speculative_pages_activated: u64, pub swap_count: u64, pub empty_tag_storing_tag_storage_pages: u64, pub executable_count: u64, pub shared_region_count: u64, pub boot_stolen_count: u64, pub secluded_count: u64, pub active_internal_count: u64, pub inactive_internal_count: u64, pub active_external_count: u64, pub inactive_external_count: u64, pub purgeable_pageable_count: u64, pub purgeable_wired_count: u64, pub background_internal_count: u64, pub background_external_count: u64, pub donated_count: u64, pub realtime_count: u64, pub max_mem_count: u64, pub phantom_ghosts_found: u64, pub phantom_ghosts_added: u64,
}

Fields§

§free_count: natural_t§active_count: natural_t§inactive_count: natural_t§wire_count: natural_t§zero_fill_count: u64§reactivations: u64§pageins: u64§pageouts: u64§faults: u64§cow_faults: u64§lookups: u64§hits: u64§purges: u64§purgeable_count: natural_t§speculative_count: natural_t§decompressions: u64§compressions: u64§swapins: u64§swapouts: u64§compressor_page_count: natural_t§throttled_count: natural_t§external_page_count: natural_t§internal_page_count: natural_t§total_uncompressed_pages_in_compressor: u64§swapped_count: u64§total_tag_storage_pages: u64§nontag_pageable_tag_storage_pages: u64§nontag_wired_tag_storage_pages: u64§free_tag_storage_pages: u64§tag_storing_tag_storage_pages: u64§total_tagged_pages: u64§resident_tagged_pages: u64§compressed_tagged_pages: u64§tagged_compressions: u64§tagged_decompressions: u64§compressed_tag_storage_bytes: u64§speculative_pages_created: u64§speculative_pages_activated: u64§swap_count: u64§empty_tag_storing_tag_storage_pages: u64§executable_count: u64§shared_region_count: u64§boot_stolen_count: u64§secluded_count: u64§active_internal_count: u64§inactive_internal_count: u64§active_external_count: u64§inactive_external_count: u64§purgeable_pageable_count: u64§purgeable_wired_count: u64§background_internal_count: u64§background_external_count: u64§donated_count: u64§realtime_count: u64§max_mem_count: u64§phantom_ghosts_found: u64§phantom_ghosts_added: u64

Trait Implementations§

Source§

impl Clone for vm_statistics64

Source§

fn clone(&self) -> vm_statistics64

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Debug for vm_statistics64

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Copy for vm_statistics64

Auto Trait Implementations§

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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 T
where 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 T
where U: Into<T>,

Source§

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 T
where U: TryFrom<T>,

Source§

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.