Enum generational_cache::cache::lru_cache::LRUCacheError
source · pub enum LRUCacheError<VE, ME> {
ListError(ListError<VE>),
ListUnderflow,
MapListInconsistent,
MapError(ME),
CacheMiss,
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl<VE, ME> RefUnwindSafe for LRUCacheError<VE, ME>where ME: RefUnwindSafe, VE: RefUnwindSafe,
impl<VE, ME> Send for LRUCacheError<VE, ME>where ME: Send, VE: Send,
impl<VE, ME> Sync for LRUCacheError<VE, ME>where ME: Sync, VE: Sync,
impl<VE, ME> Unpin for LRUCacheError<VE, ME>where ME: Unpin, VE: Unpin,
impl<VE, ME> UnwindSafe for LRUCacheError<VE, ME>where ME: UnwindSafe, VE: UnwindSafe,
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