pub enum AbortFailure {
Restore(RestoreFailure),
Finish(FinishFailure),
}Expand description
Why an abort did not leave the target clean.
Variants§
Restore(RestoreFailure)
A file is not back; the marker and backups stay for recovery.
Finish(FinishFailure)
Both files are back, and the marker is still active.
Trait Implementations§
Source§impl Clone for AbortFailure
impl Clone for AbortFailure
Source§fn clone(&self) -> AbortFailure
fn clone(&self) -> AbortFailure
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AbortFailure
impl Debug for AbortFailure
impl Eq for AbortFailure
Source§impl PartialEq for AbortFailure
impl PartialEq for AbortFailure
impl StructuralPartialEq for AbortFailure
Auto Trait Implementations§
impl Freeze for AbortFailure
impl RefUnwindSafe for AbortFailure
impl Send for AbortFailure
impl Sync for AbortFailure
impl Unpin for AbortFailure
impl UnsafeUnpin for AbortFailure
impl UnwindSafe for AbortFailure
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