pub enum SystemdLoadState {
Loaded,
Error,
Masked,
Other(String),
}
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for SystemdLoadState
impl Clone for SystemdLoadState
Source§fn clone(&self) -> SystemdLoadState
fn clone(&self) -> SystemdLoadState
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 SystemdLoadState
impl Debug for SystemdLoadState
Source§impl<'a> From<&'a str> for SystemdLoadState
impl<'a> From<&'a str> for SystemdLoadState
Source§fn from(string: &str) -> SystemdLoadState
fn from(string: &str) -> SystemdLoadState
Converts to this type from the input type.
Source§impl PartialEq for SystemdLoadState
impl PartialEq for SystemdLoadState
impl Eq for SystemdLoadState
impl StructuralPartialEq for SystemdLoadState
Auto Trait Implementations§
impl Freeze for SystemdLoadState
impl RefUnwindSafe for SystemdLoadState
impl Send for SystemdLoadState
impl Sync for SystemdLoadState
impl Unpin for SystemdLoadState
impl UnwindSafe for SystemdLoadState
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