Struct ntapi::ntpsapi::VM_COUNTERS

source ·
#[repr(C)]
pub struct VM_COUNTERS { pub PeakVirtualSize: SIZE_T, pub VirtualSize: SIZE_T, pub PageFaultCount: ULONG, pub PeakWorkingSetSize: SIZE_T, pub WorkingSetSize: SIZE_T, pub QuotaPeakPagedPoolUsage: SIZE_T, pub QuotaPagedPoolUsage: SIZE_T, pub QuotaPeakNonPagedPoolUsage: SIZE_T, pub QuotaNonPagedPoolUsage: SIZE_T, pub PagefileUsage: SIZE_T, pub PeakPagefileUsage: SIZE_T, }

Fields§

§PeakVirtualSize: SIZE_T§VirtualSize: SIZE_T§PageFaultCount: ULONG§PeakWorkingSetSize: SIZE_T§WorkingSetSize: SIZE_T§QuotaPeakPagedPoolUsage: SIZE_T§QuotaPagedPoolUsage: SIZE_T§QuotaPeakNonPagedPoolUsage: SIZE_T§QuotaNonPagedPoolUsage: SIZE_T§PagefileUsage: SIZE_T§PeakPagefileUsage: SIZE_T

Trait Implementations§

source§

impl Clone for VM_COUNTERS

source§

fn clone(&self) -> VM_COUNTERS

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_COUNTERS

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.