#[non_exhaustive]pub enum LevelDbError {
Io {
operation: &'static str,
path: Option<PathBuf>,
source: Error,
},
Corruption {
path: Option<PathBuf>,
message: String,
},
InvalidArgument {
message: String,
},
Unsupported {
feature: &'static str,
message: String,
},
Compression {
codec: &'static str,
message: String,
},
Cancelled,
ReadOnly,
AlreadyExists {
path: PathBuf,
},
NotFound {
path: PathBuf,
},
LockPoisoned {
operation: &'static str,
},
Join {
message: String,
},
}Expand description
Errors returned while opening, reading, writing, or repairing a database.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Io
Filesystem or OS I/O failure.
Fields
Corruption
On-disk data was malformed or failed validation.
Fields
InvalidArgument
Caller supplied invalid options or input.
Unsupported
The requested feature is disabled or not implemented.
Fields
Compression
Compression or decompression failed.
Fields
Cancelled
Scan cancelled through crate::ScanCancelFlag.
ReadOnly
A mutating operation was requested on a read-only database.
AlreadyExists
OpenOptions::error_if_exists rejected an existing database.
NotFound
The requested database or required metadata file was missing.
LockPoisoned
An internal lock was poisoned.
Join
A blocking task failed to join in the optional async wrapper.
Implementations§
Trait Implementations§
Source§impl Debug for LevelDbError
impl Debug for LevelDbError
Source§impl Display for LevelDbError
impl Display for LevelDbError
Source§impl Error for LevelDbError
impl Error for LevelDbError
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 LevelDbError
impl !RefUnwindSafe for LevelDbError
impl Send for LevelDbError
impl Sync for LevelDbError
impl Unpin for LevelDbError
impl UnsafeUnpin for LevelDbError
impl !UnwindSafe for LevelDbError
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more