Struct winapi::PROCESS_MEMORY_COUNTERS [] [src]

pub struct PROCESS_MEMORY_COUNTERS {
    pub cb: DWORD,
    pub PageFaultCount: DWORD,
    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

cb: DWORD PageFaultCount: DWORD 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

impl Debug for PROCESS_MEMORY_COUNTERS
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Copy for PROCESS_MEMORY_COUNTERS
[src]

impl Clone for PROCESS_MEMORY_COUNTERS
[src]

fn clone(&self) -> PROCESS_MEMORY_COUNTERS

Returns a copy of the value. Read more

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

Performs copy-assignment from source. Read more