pub enum RestoreApplyJournalError {
UnsupportedVersion(u16),
MissingField(&'static str),
CountMismatch {
field: &'static str,
reported: usize,
actual: usize,
},
DuplicateSequence(usize),
MissingSequence(usize),
ReadyJournalHasBlockingState,
BlockedOperationMissingReason(usize),
UnblockedOperationHasReasons(usize),
}Expand description
RestoreApplyJournalError
Variants§
UnsupportedVersion(u16)
MissingField(&'static str)
CountMismatch
DuplicateSequence(usize)
MissingSequence(usize)
ReadyJournalHasBlockingState
BlockedOperationMissingReason(usize)
UnblockedOperationHasReasons(usize)
Trait Implementations§
Source§impl Debug for RestoreApplyJournalError
impl Debug for RestoreApplyJournalError
Source§impl Display for RestoreApplyJournalError
impl Display for RestoreApplyJournalError
Source§impl Error for RestoreApplyJournalError
impl Error for RestoreApplyJournalError
1.30.0 · 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()
Auto Trait Implementations§
impl Freeze for RestoreApplyJournalError
impl RefUnwindSafe for RestoreApplyJournalError
impl Send for RestoreApplyJournalError
impl Sync for RestoreApplyJournalError
impl Unpin for RestoreApplyJournalError
impl UnsafeUnpin for RestoreApplyJournalError
impl UnwindSafe for RestoreApplyJournalError
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