#[repr(C)]
pub struct SYSTEM_PROCESS_INFORMATION {
Show 35 fields pub NextEntryOffset: u32, pub NumberOfThreads: u32, pub WorkingSetPrivateSize: i64, pub HardFaultCount: u32, pub NumberOfThreadsHighWatermark: u32, pub CycleTime: u64, pub CreateTime: i64, pub UserTime: i64, pub KernelTime: i64, pub ImageName: UNICODE_STRING, pub BasePriority: i32, pub UniqueProcessId: HANDLE, pub InheritedFromUniqueProcessId: HANDLE, pub HandleCount: u32, pub SessionId: u32, pub UniqueProcessKey: usize, 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 PrivatePageCount: usize, pub ReadOperationCount: i64, pub WriteOperationCount: i64, pub OtherOperationCount: i64, pub ReadTransferCount: i64, pub WriteTransferCount: i64, pub OtherTransferCount: i64, pub Threads: [SYSTEM_THREAD_INFORMATION; 1],
}

Fieldsยง

ยงNextEntryOffset: u32ยงNumberOfThreads: u32ยงWorkingSetPrivateSize: i64ยงHardFaultCount: u32ยงNumberOfThreadsHighWatermark: u32ยงCycleTime: u64ยงCreateTime: i64ยงUserTime: i64ยงKernelTime: i64ยงImageName: UNICODE_STRINGยงBasePriority: i32ยงUniqueProcessId: HANDLEยงInheritedFromUniqueProcessId: HANDLEยงHandleCount: u32ยงSessionId: u32ยงUniqueProcessKey: usizeยงPeakVirtualSize: usizeยงVirtualSize: usizeยงPageFaultCount: u32ยงPeakWorkingSetSize: usizeยงWorkingSetSize: usizeยงQuotaPeakPagedPoolUsage: usizeยงQuotaPagedPoolUsage: usizeยงQuotaPeakNonPagedPoolUsage: usizeยงQuotaNonPagedPoolUsage: usizeยงPagefileUsage: usizeยงPeakPagefileUsage: usizeยงPrivatePageCount: usizeยงReadOperationCount: i64ยงWriteOperationCount: i64ยงOtherOperationCount: i64ยงReadTransferCount: i64ยงWriteTransferCount: i64ยงOtherTransferCount: i64ยงThreads: [SYSTEM_THREAD_INFORMATION; 1]

Trait Implementationsยง

sourceยง

impl Debug for SYSTEM_PROCESS_INFORMATION

sourceยง

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
sourceยง

impl Default for SYSTEM_PROCESS_INFORMATION

sourceยง

fn default() -> Self

Returns the โ€œdefault valueโ€ for a type. Read more

Auto Trait Implementationsยง

Blanket Implementationsยง

sourceยง

impl<T> Any for Twhere T: 'static + ?Sized,

sourceยง

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
sourceยง

impl<T> Borrow<T> for Twhere T: ?Sized,

sourceยง

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
sourceยง

impl<T> BorrowMut<T> for Twhere T: ?Sized,

sourceยง

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
sourceยง

impl<T> From<T> for T

sourceยง

fn from(t: T) -> T

Returns the argument unchanged.

sourceยง

impl<T, U> Into<U> for Twhere U: From<T>,

sourceยง

fn into(self) -> U

Calls U::from(self).

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

sourceยง

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

ยง

type Error = Infallible

The type returned in the event of a conversion error.
sourceยง

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
sourceยง

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

ยง

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
sourceยง

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.