pub enum SystemdSignal {
UnitNew(String, OwnedObjectPath),
UnitRemoved(String, OwnedObjectPath),
JobNew(u32, OwnedObjectPath, String),
JobRemoved(u32, OwnedObjectPath, String, String),
StartupFinished(u64, u64, u64, u64, u64, u64),
UnitFilesChanged,
Reloading(bool),
}Variants§
UnitNew(String, OwnedObjectPath)
UnitRemoved(String, OwnedObjectPath)
JobNew(u32, OwnedObjectPath, String)
JobRemoved(u32, OwnedObjectPath, String, String)
StartupFinished(u64, u64, u64, u64, u64, u64)
UnitFilesChanged
Reloading(bool)
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SystemdSignal
impl RefUnwindSafe for SystemdSignal
impl Send for SystemdSignal
impl Sync for SystemdSignal
impl Unpin 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