pub enum DaemonState {
Offline,
Booting,
Loading,
Running,
Restarting,
Closing,
Errored,
}
Expand description
Represents the state of the daemon.
Variants§
Trait Implementations§
Source§impl Clone for DaemonState
impl Clone for DaemonState
Source§fn clone(&self) -> DaemonState
fn clone(&self) -> DaemonState
Returns a copy 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 DaemonState
impl Debug for DaemonState
Source§impl PartialEq for DaemonState
impl PartialEq for DaemonState
impl Copy for DaemonState
impl StructuralPartialEq for DaemonState
Auto Trait Implementations§
impl Freeze for DaemonState
impl RefUnwindSafe for DaemonState
impl Send for DaemonState
impl Sync for DaemonState
impl Unpin for DaemonState
impl UnwindSafe for DaemonState
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