#[repr(u8)]pub enum Status {
Show 13 variants
Unknown = 0,
Idle = 1,
Loading = 2,
Decompressing = 3,
DeviceRestart = 4,
DeviceWrite = 5,
Scheduling = 6,
Downloading = 7,
DeviceRead = 8,
DeviceErase = 9,
WaitingForAuth = 10,
DeviceBusy = 11,
Shutdown = 12,
}
Expand description
Describes the status of the daemon.
Variants§
Unknown = 0
Idle = 1
Loading = 2
Decompressing = 3
DeviceRestart = 4
DeviceWrite = 5
Scheduling = 6
Downloading = 7
DeviceRead = 8
DeviceErase = 9
WaitingForAuth = 10
DeviceBusy = 11
Shutdown = 12
Trait Implementations§
impl Copy for Status
impl Eq for Status
impl StructuralPartialEq for Status
Auto Trait Implementations§
impl Freeze for Status
impl RefUnwindSafe for Status
impl Send for Status
impl Sync for Status
impl Unpin for Status
impl UnwindSafe for Status
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