pub enum Daemon {
Systemd,
Unknown,
Upstart,
}
Expand description
Various init daemons
Variants§
Systemd
Most systems are using systemd these days. Those include: Arch, Debian, Fedora, Gentoo, Mageia, OpenSUSE, Ubuntu and probably others
Unknown
Any daemon that we don’t know how to detect yet
Upstart
Older versions of Ubuntu
Auto Trait Implementations§
impl Freeze for Daemon
impl RefUnwindSafe for Daemon
impl Send for Daemon
impl Sync for Daemon
impl Unpin for Daemon
impl UnwindSafe for Daemon
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