pub enum TxnError {
Tree(TreeError),
Mmap(MmapError),
}
Expand description
An error that occurred during a transaction.
Variants§
Tree(TreeError)
An error whose root cause is due to an erroneous B+ tree operation, e.g. deleting a non-existent key.
Mmap(MmapError)
A system error with the memory map or its underlying file.
Trait Implementations§
Source§impl Error for TxnError
impl Error for TxnError
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 TxnError
impl !RefUnwindSafe for TxnError
impl Send for TxnError
impl Sync for TxnError
impl Unpin for TxnError
impl !UnwindSafe for TxnError
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