#[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_T§NonPagedPoolLimit: SIZE_T§MinimumWorkingSetSize: SIZE_T§MaximumWorkingSetSize: SIZE_T§PagefileLimit: SIZE_T§TimeLimit: LARGE_INTEGER§WorkingSetLimit: SIZE_T§Reserved2: SIZE_T§Reserved3: SIZE_T§Reserved4: SIZE_T§Flags: DWORD§CpuRateLimit: RATE_QUOTA_LIMITTrait Implementations§
Source§impl Clone for _QUOTA_LIMITS_EX
impl Clone for _QUOTA_LIMITS_EX
Source§fn clone(&self) -> _QUOTA_LIMITS_EX
fn clone(&self) -> _QUOTA_LIMITS_EX
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for _QUOTA_LIMITS_EX
Auto Trait Implementations§
impl Freeze for _QUOTA_LIMITS_EX
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 UnsafeUnpin for _QUOTA_LIMITS_EX
impl UnwindSafe for _QUOTA_LIMITS_EX
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more