pub enum SystemdSignal {
UnitNew(UnitDBusLevel, String),
UnitRemoved(UnitDBusLevel, String),
JobNew(UnitDBusLevel, u32, OwnedObjectPath, String),
JobRemoved(UnitDBusLevel, u32, OwnedObjectPath, String, String),
StartupFinished(UnitDBusLevel, u64, u64, u64, u64, u64, u64),
UnitFilesChanged(UnitDBusLevel),
Reloading(UnitDBusLevel, bool),
}Variants§
UnitNew(UnitDBusLevel, String)
UnitRemoved(UnitDBusLevel, String)
JobNew(UnitDBusLevel, u32, OwnedObjectPath, String)
JobRemoved(UnitDBusLevel, u32, OwnedObjectPath, String, String)
StartupFinished(UnitDBusLevel, u64, u64, u64, u64, u64, u64)
UnitFilesChanged(UnitDBusLevel)
Reloading(UnitDBusLevel, bool)
Implementations§
Trait Implementations§
Source§impl Clone for SystemdSignal
impl Clone for SystemdSignal
Source§fn clone(&self) -> SystemdSignal
fn clone(&self) -> SystemdSignal
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 SystemdSignal
impl Debug for SystemdSignal
Source§impl Hash for SystemdSignal
impl Hash for SystemdSignal
Source§impl PartialEq for SystemdSignal
impl PartialEq for SystemdSignal
impl Eq for SystemdSignal
impl StructuralPartialEq for SystemdSignal
Auto Trait Implementations§
impl Freeze for SystemdSignal
impl RefUnwindSafe for SystemdSignal
impl Send for SystemdSignal
impl Sync for SystemdSignal
impl Unpin for SystemdSignal
impl UnsafeUnpin for SystemdSignal
impl UnwindSafe for SystemdSignal
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