#[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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.