#[repr(C)]pub struct QUOTA_LIMITS_EX {
    pub PagedPoolLimit: SIZE_T,
    pub NonPagedPoolLimit: SIZE_T,
    pub MinimumWorkingSetSize: SIZE_T,
    pub MaximumWorkingSetSize: SIZE_T,
    pub PagefileLimit: SIZE_T,
    pub TimeLimit: LARGE_INTEGER,
    pub WorkingSetLimit: SIZE_T,
    pub Reserved2: SIZE_T,
    pub Reserved3: SIZE_T,
    pub Reserved4: SIZE_T,
    pub Flags: DWORD,
    pub CpuRateLimit: RATE_QUOTA_LIMIT,
}Fields
PagedPoolLimit: SIZE_TNonPagedPoolLimit: SIZE_TMinimumWorkingSetSize: SIZE_TMaximumWorkingSetSize: SIZE_TPagefileLimit: SIZE_TTimeLimit: LARGE_INTEGERWorkingSetLimit: SIZE_TReserved2: SIZE_TReserved3: SIZE_TReserved4: SIZE_TFlags: DWORDCpuRateLimit: RATE_QUOTA_LIMITTrait Implementations
sourceimpl Clone for QUOTA_LIMITS_EX
 
impl Clone for QUOTA_LIMITS_EX
sourcefn clone(&self) -> QUOTA_LIMITS_EX
 
fn clone(&self) -> QUOTA_LIMITS_EX
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
impl Copy for QUOTA_LIMITS_EX
Auto Trait Implementations
impl RefUnwindSafe for QUOTA_LIMITS_EX
impl Send for QUOTA_LIMITS_EX
impl Sync for QUOTA_LIMITS_EX
impl Unpin for QUOTA_LIMITS_EX
impl UnwindSafe for QUOTA_LIMITS_EX
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
    T: ?Sized, 
 
impl<T> BorrowMut<T> for T where
    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