pub enum SystemdLoadState {
Loaded,
Error,
Masked,
NotFound,
}Expand description
State value that reflects whether the configuration file of this unit has been loaded https://www.freedesktop.org/wiki/Software/systemd/dbus/ LoadState property
Variants§
Trait Implementations§
Source§impl Clone for SystemdLoadState
impl Clone for SystemdLoadState
Source§fn clone(&self) -> SystemdLoadState
fn clone(&self) -> SystemdLoadState
Returns a duplicate 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<'de> Deserialize<'de> for SystemdLoadState
impl<'de> Deserialize<'de> for SystemdLoadState
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
Source§impl FromStr for SystemdLoadState
impl FromStr for SystemdLoadState
Source§impl PartialEq for SystemdLoadState
impl PartialEq for SystemdLoadState
Source§impl Serialize for SystemdLoadState
impl Serialize 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