#[non_exhaustive]pub enum PersistenceErrorKind {
Recovery(&'static str),
WrongInsertCount {
got: usize,
expect: usize,
},
Proto(ProtoError),
Sqlite(Error),
Timeout,
}Expand description
The error kind for errors that get returned in the crate
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.
Recovery(&'static str)
An error that occurred when recovering from journal
WrongInsertCount
The number of inserted records didn’t match the expected amount
Fields
Proto(ProtoError)
An error got returned by the hickory-proto crate
Sqlite(Error)
Available on crate feature
sqlite only.An error got returned from the sqlite crate
Timeout
A request timed out
Trait Implementations§
Source§impl Debug for PersistenceErrorKind
impl Debug for PersistenceErrorKind
Source§impl Display for PersistenceErrorKind
impl Display for PersistenceErrorKind
Source§impl Error for PersistenceErrorKind
impl Error for PersistenceErrorKind
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()
Source§impl From<Error> for PersistenceErrorKind
impl From<Error> for PersistenceErrorKind
Source§impl From<PersistenceErrorKind> for PersistenceError
impl From<PersistenceErrorKind> for PersistenceError
Source§fn from(kind: PersistenceErrorKind) -> Self
fn from(kind: PersistenceErrorKind) -> Self
Converts to this type from the input type.
Source§impl From<ProtoError> for PersistenceErrorKind
impl From<ProtoError> for PersistenceErrorKind
Source§fn from(source: ProtoError) -> Self
fn from(source: ProtoError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PersistenceErrorKind
impl !RefUnwindSafe for PersistenceErrorKind
impl Send for PersistenceErrorKind
impl Sync for PersistenceErrorKind
impl Unpin for PersistenceErrorKind
impl !UnwindSafe for PersistenceErrorKind
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