pub enum UnitState {
NotFound,
Running,
Exited,
OtherActive(String),
Inactive(String),
Failed(String),
Other(String),
}
Variants§
Trait Implementations§
source§impl PartialEq for UnitState
impl PartialEq for UnitState
impl Eq for UnitState
impl StructuralPartialEq for UnitState
Auto Trait Implementations§
impl RefUnwindSafe for UnitState
impl Send for UnitState
impl Sync for UnitState
impl Unpin for UnitState
impl UnwindSafe for UnitState
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