pub enum FreezerState {
Thawed,
Freezing,
Frozen,
}Expand description
The current state of the control group
Variants§
Thawed
The processes in the control group are not frozen.
Freezing
The processes in the control group are in the processes of being frozen.
Frozen
The processes in the control group are frozen.
Auto Trait Implementations§
impl Freeze for FreezerState
impl RefUnwindSafe for FreezerState
impl Send for FreezerState
impl Sync for FreezerState
impl Unpin for FreezerState
impl UnwindSafe for FreezerState
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