pub enum ProcState {
Running,
Sleeping,
Zombie,
Unknown,
}Variants§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ProcState
impl<'de> Deserialize<'de> for ProcState
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for ProcState
impl StructuralPartialEq for ProcState
Auto Trait Implementations§
impl Freeze for ProcState
impl RefUnwindSafe for ProcState
impl Send for ProcState
impl Sync for ProcState
impl Unpin for ProcState
impl UnsafeUnpin 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