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
sourceimpl Clone for VM_COUNTERS
impl Clone for VM_COUNTERS
sourcefn clone(&self) -> VM_COUNTERS
fn clone(&self) -> VM_COUNTERS
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Copy for VM_COUNTERS
Auto Trait Implementations
impl RefUnwindSafe for VM_COUNTERS
impl Send for VM_COUNTERS
impl Sync for VM_COUNTERS
impl Unpin for VM_COUNTERS
impl UnwindSafe for VM_COUNTERS
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more