pub enum RecoveryError {
JournalError(String),
SerializationError(Error),
NoCheckpoint,
CorruptedCheckpoint(String),
IoError(Error),
}Expand description
Errors from state recovery operations.
Variants§
JournalError(String)
Journal operation failed.
SerializationError(Error)
Serialization error.
NoCheckpoint
No checkpoint found for recovery.
CorruptedCheckpoint(String)
Checkpoint is corrupted or invalid.
IoError(Error)
I/O error.
Trait Implementations§
Source§impl Debug for RecoveryError
impl Debug for RecoveryError
Source§impl Display for RecoveryError
impl Display for RecoveryError
Source§impl Error for RecoveryError
impl Error for RecoveryError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<Error> for RecoveryError
impl From<Error> for RecoveryError
Auto Trait Implementations§
impl Freeze for RecoveryError
impl !RefUnwindSafe for RecoveryError
impl Send for RecoveryError
impl Sync for RecoveryError
impl Unpin for RecoveryError
impl !UnwindSafe for RecoveryError
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