pub enum RecoveryPhase {
Cold,
Quiescing,
Flushing,
Snapshotting,
Restoring,
Replaying,
RebuildingDerivedState,
Recovered,
}Expand description
High-level recovery lifecycle phases for engine startup, drain, and resume.
Variants§
Trait Implementations§
Source§impl Clone for RecoveryPhase
impl Clone for RecoveryPhase
Source§fn clone(&self) -> RecoveryPhase
fn clone(&self) -> RecoveryPhase
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 RecoveryPhase
impl Debug for RecoveryPhase
Source§impl PartialEq for RecoveryPhase
impl PartialEq for RecoveryPhase
Source§impl Serialize for RecoveryPhase
impl Serialize for RecoveryPhase
impl Copy for RecoveryPhase
impl Eq for RecoveryPhase
impl StructuralPartialEq for RecoveryPhase
Auto Trait Implementations§
impl Freeze for RecoveryPhase
impl RefUnwindSafe for RecoveryPhase
impl Send for RecoveryPhase
impl Sync for RecoveryPhase
impl Unpin for RecoveryPhase
impl UnsafeUnpin for RecoveryPhase
impl UnwindSafe for RecoveryPhase
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