pub enum CommitError<E> {
TransactionCanceled,
Corrupted,
Flash(E),
}
Expand description
Error returned by WriteTransaction::commit
.
Variants§
TransactionCanceled
Transaction is canceled. See WriteTransaction
for details.
Corrupted
Database is corrupted, or not formatted yet.
Flash(E)
Some operation on the underlying Flash
failed.
Trait Implementations§
Source§impl<E: Clone> Clone for CommitError<E>
impl<E: Clone> Clone for CommitError<E>
Source§fn clone(&self) -> CommitError<E>
fn clone(&self) -> CommitError<E>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<E: Debug> Debug for CommitError<E>
impl<E: Debug> Debug for CommitError<E>
Source§impl<E> Format for CommitError<E>where
E: Format,
impl<E> Format for CommitError<E>where
E: Format,
Source§impl<E> From<Error<E>> for CommitError<E>
impl<E> From<Error<E>> for CommitError<E>
Source§impl<E: PartialEq> PartialEq for CommitError<E>
impl<E: PartialEq> PartialEq for CommitError<E>
impl<E: Copy> Copy for CommitError<E>
impl<E: Eq> Eq for CommitError<E>
impl<E> StructuralPartialEq for CommitError<E>
Auto Trait Implementations§
impl<E> Freeze for CommitError<E>where
E: Freeze,
impl<E> RefUnwindSafe for CommitError<E>where
E: RefUnwindSafe,
impl<E> Send for CommitError<E>where
E: Send,
impl<E> Sync for CommitError<E>where
E: Sync,
impl<E> Unpin for CommitError<E>where
E: Unpin,
impl<E> UnwindSafe for CommitError<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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)