#[repr(C)]pub struct VM_COUNTERS_EX {
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,
pub PrivateUsage: 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§PrivateUsage: SIZE_TTrait Implementations§
Source§impl Clone for VM_COUNTERS_EX
impl Clone for VM_COUNTERS_EX
Source§fn clone(&self) -> VM_COUNTERS_EX
fn clone(&self) -> VM_COUNTERS_EX
Returns a duplicate 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 moreimpl Copy for VM_COUNTERS_EX
Auto Trait Implementations§
impl Freeze for VM_COUNTERS_EX
impl RefUnwindSafe for VM_COUNTERS_EX
impl Send for VM_COUNTERS_EX
impl Sync for VM_COUNTERS_EX
impl Unpin for VM_COUNTERS_EX
impl UnwindSafe for VM_COUNTERS_EX
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