pub enum SnapshotImageOperationError<E> {
Operation(E),
Cleanup {
path: PathBuf,
cleanup: String,
},
CleanupAfterFailure {
path: PathBuf,
cleanup: String,
cause: E,
},
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl<E> Freeze for SnapshotImageOperationError<E>where
E: Freeze,
impl<E> RefUnwindSafe for SnapshotImageOperationError<E>where
E: RefUnwindSafe,
impl<E> Send for SnapshotImageOperationError<E>where
E: Send,
impl<E> Sync for SnapshotImageOperationError<E>where
E: Sync,
impl<E> Unpin for SnapshotImageOperationError<E>where
E: Unpin,
impl<E> UnsafeUnpin for SnapshotImageOperationError<E>where
E: UnsafeUnpin,
impl<E> UnwindSafe for SnapshotImageOperationError<E>where
E: UnwindSafe,
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