pub enum CgroupMemoryLimit {
Unlimited,
Finite(u64),
}Expand description
The exact syntax of one cgroup-v2 memory.max value.
Variants§
Unlimited
The literal max token: this level imposes no hard memory ceiling.
Finite(u64)
A finite hard ceiling in bytes. Zero is valid and authoritative.
Trait Implementations§
Source§impl Clone for CgroupMemoryLimit
impl Clone for CgroupMemoryLimit
Source§fn clone(&self) -> CgroupMemoryLimit
fn clone(&self) -> CgroupMemoryLimit
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for CgroupMemoryLimit
Source§impl Debug for CgroupMemoryLimit
impl Debug for CgroupMemoryLimit
impl Eq for CgroupMemoryLimit
Source§impl PartialEq for CgroupMemoryLimit
impl PartialEq for CgroupMemoryLimit
impl StructuralPartialEq for CgroupMemoryLimit
Auto Trait Implementations§
impl Freeze for CgroupMemoryLimit
impl RefUnwindSafe for CgroupMemoryLimit
impl Send for CgroupMemoryLimit
impl Sync for CgroupMemoryLimit
impl Unpin for CgroupMemoryLimit
impl UnsafeUnpin for CgroupMemoryLimit
impl UnwindSafe for CgroupMemoryLimit
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