[−][src]Trait heim_process::os::windows::MemoryExt
Windows-specific extension to process Memory information.
Information here is provided by the PROCESS_MEMORY_COUNTERS_EX struct, see its documentation for details.
Required methods
pub fn page_faults(&self) -> u32
[src]
Returns the number of page faults.
pub fn peak_working_set_size(&self) -> usize
[src]
Returns the the peak working set size.
pub fn working_set_size(&self) -> usize
[src]
Returns the current working set size.
pub fn quota_peak_paged_pool_usage(&self) -> usize
[src]
Returns the peak paged pool usage.
pub fn quota_paged_pool_usage(&self) -> usize
[src]
Returns the current paged pool usage.
pub fn quota_peak_non_paged_pool_usage(&self) -> usize
[src]
Returns the peak nonpaged pool usage.
pub fn quota_non_paged_pool_usage(&self) -> usize
[src]
Returns the current nonpaged pool usage.
pub fn pagefile_usage(&self) -> usize
[src]
Returns the Commit Charge value in bytes.
Commit Charge is the total amount of memory that the memory manager has committed for a running process.
pub fn peak_pagefile_usage(&self) -> usize
[src]
Returns the peak value in bytes of the Commit Charge during the lifetime of this process.
pub fn private_usage(&self) -> usize
[src]
Same as pagefile_usage
.
The Commit Charge value in bytes for this process. Commit Charge is the total amount of memory that the memory manager has committed for a running process.