#[repr(C)]pub struct JOBOBJECT_BASIC_ACCOUNTING_INFORMATION {
pub TotalUserTime: i64,
pub TotalKernelTime: i64,
pub ThisPeriodTotalUserTime: i64,
pub ThisPeriodTotalKernelTime: i64,
pub TotalPageFaultCount: u32,
pub TotalProcesses: u32,
pub ActiveProcesses: u32,
pub TotalTerminatedProcesses: u32,
}
Fields§
§TotalUserTime: i64
§TotalKernelTime: i64
§ThisPeriodTotalUserTime: i64
§ThisPeriodTotalKernelTime: i64
§TotalPageFaultCount: u32
§TotalProcesses: u32
§ActiveProcesses: u32
§TotalTerminatedProcesses: u32
Trait Implementations§
impl Copy for JOBOBJECT_BASIC_ACCOUNTING_INFORMATION
Auto Trait Implementations§
impl RefUnwindSafe for JOBOBJECT_BASIC_ACCOUNTING_INFORMATION
impl Send for JOBOBJECT_BASIC_ACCOUNTING_INFORMATION
impl Sync for JOBOBJECT_BASIC_ACCOUNTING_INFORMATION
impl Unpin for JOBOBJECT_BASIC_ACCOUNTING_INFORMATION
impl UnwindSafe for JOBOBJECT_BASIC_ACCOUNTING_INFORMATION
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more