#[repr(C)]pub struct PSS_PROCESS_INFORMATION {Show 26 fields
pub ExitStatus: u32,
pub PebBaseAddress: *mut c_void,
pub AffinityMask: usize,
pub BasePriority: i32,
pub ProcessId: u32,
pub ParentProcessId: u32,
pub Flags: PSS_PROCESS_FLAGS,
pub CreateTime: FILETIME,
pub ExitTime: FILETIME,
pub KernelTime: FILETIME,
pub UserTime: FILETIME,
pub PriorityClass: u32,
pub PeakVirtualSize: usize,
pub VirtualSize: usize,
pub PageFaultCount: u32,
pub PeakWorkingSetSize: usize,
pub WorkingSetSize: usize,
pub QuotaPeakPagedPoolUsage: usize,
pub QuotaPagedPoolUsage: usize,
pub QuotaPeakNonPagedPoolUsage: usize,
pub QuotaNonPagedPoolUsage: usize,
pub PagefileUsage: usize,
pub PeakPagefileUsage: usize,
pub PrivateUsage: usize,
pub ExecuteFlags: u32,
pub ImageFileName: [u16; 260],
}Expand description
Required features: "Win32_System_Diagnostics_ProcessSnapshotting", "Win32_Foundation"
Fields
ExitStatus: u32PebBaseAddress: *mut c_voidAffinityMask: usizeBasePriority: i32ProcessId: u32ParentProcessId: u32Flags: PSS_PROCESS_FLAGSCreateTime: FILETIMEExitTime: FILETIMEKernelTime: FILETIMEUserTime: FILETIMEPriorityClass: u32PeakVirtualSize: usizeVirtualSize: usizePageFaultCount: u32PeakWorkingSetSize: usizeWorkingSetSize: usizeQuotaPeakPagedPoolUsage: usizeQuotaPagedPoolUsage: usizeQuotaPeakNonPagedPoolUsage: usizeQuotaNonPagedPoolUsage: usizePagefileUsage: usizePeakPagefileUsage: usizePrivateUsage: usizeExecuteFlags: u32ImageFileName: [u16; 260]Trait Implementations
impl Clone for PSS_PROCESS_INFORMATION
impl Clone for PSS_PROCESS_INFORMATION
impl Copy for PSS_PROCESS_INFORMATION
Auto Trait Implementations
impl RefUnwindSafe for PSS_PROCESS_INFORMATION
impl !Send for PSS_PROCESS_INFORMATION
impl !Sync for PSS_PROCESS_INFORMATION
impl Unpin for PSS_PROCESS_INFORMATION
impl UnwindSafe for PSS_PROCESS_INFORMATION
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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