pub enum Liveness {
Alive,
Dead,
Unknown,
}Variants§
Alive
The recorded process is still running on the current boot.
Dead
The recorded process is gone (or the boot id has rolled).
Unknown
Insufficient information; default to leaving the entry alone so we never reap a live owner on missing fields.
Trait Implementations§
impl Copy for Liveness
impl Eq for Liveness
impl StructuralPartialEq for Liveness
Auto Trait Implementations§
impl Freeze for Liveness
impl RefUnwindSafe for Liveness
impl Send for Liveness
impl Sync for Liveness
impl Unpin for Liveness
impl UnsafeUnpin for Liveness
impl UnwindSafe for Liveness
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