pub enum ProcState {
Unused,
Used,
Sleeping,
Runnable,
Running,
Zombie,
}
Variants§
Auto Trait Implementations§
impl Freeze for ProcState
impl RefUnwindSafe for ProcState
impl Send for ProcState
impl Sync for ProcState
impl Unpin for ProcState
impl UnwindSafe for ProcState
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