pub enum RecoveryState {
Idle,
Initializing,
Scanning,
Validating,
Replaying,
Finalizing,
Complete,
Failed,
}Expand description
Recovery state machine
Variants§
Trait Implementations§
Source§impl Clone for RecoveryState
impl Clone for RecoveryState
Source§fn clone(&self) -> RecoveryState
fn clone(&self) -> RecoveryState
Returns a duplicate 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 RecoveryState
impl Debug for RecoveryState
Source§impl PartialEq for RecoveryState
impl PartialEq for RecoveryState
impl Copy for RecoveryState
impl Eq for RecoveryState
impl StructuralPartialEq for RecoveryState
Auto Trait Implementations§
impl Freeze for RecoveryState
impl RefUnwindSafe for RecoveryState
impl Send for RecoveryState
impl Sync for RecoveryState
impl Unpin for RecoveryState
impl UnwindSafe for RecoveryState
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