#[non_exhaustive]pub enum StorageError {
NotFound(String),
Backend(String),
Serialization(String),
Conflict(String),
}Expand description
Failure modes common to all storage backends.
Backends map their native errors (a sqlx::Error, a redis::RedisError, a
tonic::Status, …) onto these variants so callers never depend on a concrete
backend’s error type. The string payloads carry backend-specific detail for
logging without leaking the backend’s types into this crate’s public API.
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.
NotFound(String)
The requested entity does not exist in the backend.
Backend(String)
The backend is unreachable or returned a transport/connection failure.
Serialization(String)
Stored bytes could not be encoded to or decoded from the domain type.
Conflict(String)
The write conflicts with existing state (optimistic-concurrency or uniqueness violation).
Trait Implementations§
Source§impl Debug for StorageError
impl Debug for StorageError
Source§impl Display for StorageError
impl Display for StorageError
Source§impl Error for StorageError
impl Error for StorageError
1.30.0 · 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 StorageError
impl RefUnwindSafe for StorageError
impl Send for StorageError
impl Sync for StorageError
impl Unpin for StorageError
impl UnsafeUnpin for StorageError
impl UnwindSafe for StorageError
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