pub enum DaemonAction {
Start {
foreground: bool,
log_level: Option<String>,
verbose: u8,
},
Stop,
Status {
json: bool,
},
Restart {
foreground: bool,
log_level: Option<String>,
verbose: u8,
},
}Variants§
Auto Trait Implementations§
impl Freeze for DaemonAction
impl RefUnwindSafe for DaemonAction
impl Send for DaemonAction
impl Sync for DaemonAction
impl Unpin for DaemonAction
impl UnsafeUnpin for DaemonAction
impl UnwindSafe for DaemonAction
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