pub enum CacheServiceError {
InMemoryCacheError(InMemoryCacheError),
KvCacheError(KvError),
}
Variants§
InMemoryCacheError(InMemoryCacheError)
KvCacheError(KvError)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CacheServiceError
impl !RefUnwindSafe for CacheServiceError
impl Send for CacheServiceError
impl Sync for CacheServiceError
impl Unpin for CacheServiceError
impl !UnwindSafe for CacheServiceError
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