pub enum UndoError {
NoUndoableAction,
NothingToRestore {
id: ActionId,
reason: String,
},
NotUndoable {
id: ActionId,
verb: &'static str,
reason: String,
},
Conflicts(Vec<String>),
Journal(JournalError),
Snapshot(SnapshotError),
PartialRolledBack {
path: String,
cause: String,
},
PartialInconsistent {
path: String,
cause: String,
rollback_failures: Vec<String>,
},
}Variants§
NoUndoableAction
NothingToRestore
NotUndoable
Conflicts(Vec<String>)
Journal(JournalError)
Snapshot(SnapshotError)
PartialRolledBack
PartialInconsistent
Trait Implementations§
Source§impl Error for UndoError
impl Error for UndoError
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<JournalError> for UndoError
impl From<JournalError> for UndoError
Source§fn from(source: JournalError) -> Self
fn from(source: JournalError) -> Self
Converts to this type from the input type.
Source§impl From<SnapshotError> for UndoError
impl From<SnapshotError> for UndoError
Source§fn from(source: SnapshotError) -> Self
fn from(source: SnapshotError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for UndoError
impl !UnwindSafe for UndoError
impl Freeze for UndoError
impl Send for UndoError
impl Sync for UndoError
impl Unpin for UndoError
impl UnsafeUnpin for UndoError
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