Enum apalis_core::storage::StorageError
source · #[non_exhaustive]
pub enum StorageError {
Connection(Box<dyn StdError + Send + Sync + 'static>),
Database(Box<dyn StdError + Send + Sync + 'static>),
NotFound,
SerDe(Box<dyn StdError + Send + Sync + 'static>),
}Available on crate feature
storage only.Expand description
Represents a storage emitted by a worker
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.
Connection(Box<dyn StdError + Send + Sync + 'static>)
Storage encountered a connection error
Database(Box<dyn StdError + Send + Sync + 'static>)
Storage encountered a database error
NotFound
The resource was not found in storage
SerDe(Box<dyn StdError + Send + Sync + 'static>)
Serialization/Deserialization Error
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
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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 StorageError
impl From<Error> for StorageError
source§impl From<StorageError> for JobError
impl From<StorageError> for JobError
source§fn from(e: StorageError) -> Self
fn from(e: StorageError) -> Self
Converts to this type from the input type.