pub enum PersistencePhase {
Init,
WaitingForDhcp,
Connecting,
Downloading,
Flushing,
Verifying,
Done,
Failed,
}Expand description
Current persistence phase.
Variants§
Trait Implementations§
Source§impl Clone for PersistencePhase
impl Clone for PersistencePhase
Source§fn clone(&self) -> PersistencePhase
fn clone(&self) -> PersistencePhase
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 PersistencePhase
impl Debug for PersistencePhase
Source§impl Default for PersistencePhase
impl Default for PersistencePhase
Source§fn default() -> PersistencePhase
fn default() -> PersistencePhase
Returns the “default value” for a type. Read more
Source§impl PartialEq for PersistencePhase
impl PartialEq for PersistencePhase
impl Copy for PersistencePhase
impl Eq for PersistencePhase
impl StructuralPartialEq for PersistencePhase
Auto Trait Implementations§
impl Freeze for PersistencePhase
impl RefUnwindSafe for PersistencePhase
impl Send for PersistencePhase
impl Sync for PersistencePhase
impl Unpin for PersistencePhase
impl UnwindSafe for PersistencePhase
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