pub struct CacheError(pub String);Expand description
Represents an error encountered when accessing or manipulating the DEK cache.
This error type is used when operations on the DEK cache fail, such as:
- Cache insertion failures
- Cache retrieval errors
- Cache invalidation issues
- Storage capacity problems
Tuple Fields§
§0: StringTrait Implementations§
Source§impl Debug for CacheError
impl Debug for CacheError
Source§impl Display for CacheError
impl Display for CacheError
impl Eq for CacheError
Source§impl PartialEq for CacheError
impl PartialEq for CacheError
Source§fn eq(&self, other: &CacheError) -> bool
fn eq(&self, other: &CacheError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CacheError
Auto Trait Implementations§
impl Freeze for CacheError
impl RefUnwindSafe for CacheError
impl Send for CacheError
impl Sync for CacheError
impl Unpin for CacheError
impl UnsafeUnpin for CacheError
impl UnwindSafe for CacheError
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