pub enum SafeModeError {
KeyValuePairNotFound,
EnvPoisonError,
DbsFull,
DbsIllegalOpen,
DbNotFoundError,
DbIsForeignError,
UnsuitableEnvironmentPath(PathBuf),
IoError(Error),
BincodeError(Error),
}
Variants§
KeyValuePairNotFound
EnvPoisonError
DbsFull
DbsIllegalOpen
DbNotFoundError
DbIsForeignError
UnsuitableEnvironmentPath(PathBuf)
IoError(Error)
BincodeError(Error)
Trait Implementations§
Source§impl From<Box<ErrorKind>> for ErrorImpl
impl From<Box<ErrorKind>> for ErrorImpl
Source§fn from(e: BincodeError) -> ErrorImpl
fn from(e: BincodeError) -> ErrorImpl
Converts to this type from the input type.
Source§impl Into<StoreError> for ErrorImpl
impl Into<StoreError> for ErrorImpl
Source§fn into(self) -> StoreError
fn into(self) -> StoreError
Converts this type into the (usually inferred) input type.
impl BackendError for ErrorImpl
Auto Trait Implementations§
impl Freeze for ErrorImpl
impl !RefUnwindSafe for ErrorImpl
impl Send for ErrorImpl
impl Sync for ErrorImpl
impl Unpin for ErrorImpl
impl !UnwindSafe for ErrorImpl
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