pub enum StoreCacheWrapperError {
StoreError(StoreError),
EncryptionError(StoreEncryptionError),
}
Variants§
StoreError(StoreError)
EncryptionError(StoreEncryptionError)
Trait Implementations§
Source§impl Debug for StoreCacheWrapperError
impl Debug for StoreCacheWrapperError
Source§impl Display for StoreCacheWrapperError
impl Display for StoreCacheWrapperError
Source§impl Error for StoreCacheWrapperError
impl Error for StoreCacheWrapperError
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()
Source§impl From<Error> for StoreCacheWrapperError
impl From<Error> for StoreCacheWrapperError
Source§fn from(value: StoreEncryptionError) -> Self
fn from(value: StoreEncryptionError) -> Self
Converts to this type from the input type.
Source§impl From<Error> for StoreCacheWrapperError
impl From<Error> for StoreCacheWrapperError
Source§impl From<StoreCacheWrapperError> for StoreError
impl From<StoreCacheWrapperError> for StoreError
Source§fn from(val: StoreCacheWrapperError) -> Self
fn from(val: StoreCacheWrapperError) -> Self
Converts to this type from the input type.
Source§impl From<StoreError> for StoreCacheWrapperError
impl From<StoreError> for StoreCacheWrapperError
Source§fn from(value: StoreError) -> Self
fn from(value: StoreError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for StoreCacheWrapperError
impl !RefUnwindSafe for StoreCacheWrapperError
impl Send for StoreCacheWrapperError
impl Sync for StoreCacheWrapperError
impl Unpin for StoreCacheWrapperError
impl !UnwindSafe for StoreCacheWrapperError
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