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
PageFaultCount
PeakWorkingSetSize
WorkingSetSize
QuotaPeakPagedPoolUsage
QuotaPagedPoolUsage
QuotaPeakNonPagedPoolUsage
QuotaNonPagedPoolUsage
PagefileUsage
PeakPagefileUsage

Trait Implementations

Derived Implementations

impl Debug for PROCESS_MEMORY_COUNTERS

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

impl Copy for PROCESS_MEMORY_COUNTERS

impl Clone for PROCESS_MEMORY_COUNTERS

fn clone(&self) -> PROCESS_MEMORY_COUNTERS

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