#[repr(C)]
pub struct SYSTEM_PROCESS_INFORMATION {
Show 23 fields pub NextEntryOffset: u32, pub NumberOfThreads: u32, pub Reserved1: [u8; 48], pub ImageName: UNICODE_STRING, pub BasePriority: i32, pub UniqueProcessId: HANDLE, pub Reserved2: *mut c_void, pub HandleCount: u32, pub SessionId: u32, pub Reserved3: *mut c_void, pub PeakVirtualSize: usize, pub VirtualSize: usize, pub Reserved4: u32, pub PeakWorkingSetSize: usize, pub WorkingSetSize: usize, pub Reserved5: *mut c_void, pub QuotaPagedPoolUsage: usize, pub Reserved6: *mut c_void, pub QuotaNonPagedPoolUsage: usize, pub PagefileUsage: usize, pub PeakPagefileUsage: usize, pub PrivatePageCount: usize, pub Reserved7: [i64; 6],
}
Expand description

Required features: "Win32_System_WindowsProgramming", "Win32_Foundation"

Fields

NextEntryOffset: u32NumberOfThreads: u32Reserved1: [u8; 48]ImageName: UNICODE_STRINGBasePriority: i32UniqueProcessId: HANDLEReserved2: *mut c_voidHandleCount: u32SessionId: u32Reserved3: *mut c_voidPeakVirtualSize: usizeVirtualSize: usizeReserved4: u32PeakWorkingSetSize: usizeWorkingSetSize: usizeReserved5: *mut c_voidQuotaPagedPoolUsage: usizeReserved6: *mut c_voidQuotaNonPagedPoolUsage: usizePagefileUsage: usizePeakPagefileUsage: usizePrivatePageCount: usizeReserved7: [i64; 6]

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.