pub enum SystemdActiveState {
Active,
Reloading,
Inactive,
Failed,
Activating,
Deactivating,
Other(String),
}
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for SystemdActiveState
impl Clone for SystemdActiveState
Source§fn clone(&self) -> SystemdActiveState
fn clone(&self) -> SystemdActiveState
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SystemdActiveState
impl Debug for SystemdActiveState
Source§impl<'a> From<&'a str> for SystemdActiveState
impl<'a> From<&'a str> for SystemdActiveState
Source§fn from(string: &str) -> SystemdActiveState
fn from(string: &str) -> SystemdActiveState
Converts to this type from the input type.
Source§impl PartialEq for SystemdActiveState
impl PartialEq for SystemdActiveState
impl Eq for SystemdActiveState
impl StructuralPartialEq for SystemdActiveState
Auto Trait Implementations§
impl Freeze for SystemdActiveState
impl RefUnwindSafe for SystemdActiveState
impl Send for SystemdActiveState
impl Sync for SystemdActiveState
impl Unpin for SystemdActiveState
impl UnwindSafe for SystemdActiveState
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