pub enum VictimError {
PoolFull,
}Expand description
Why a promotion cannot find a victim slot.
Variants§
PoolFull
Every cache slot is busy (ref_count > 0) — a RETRYABLE condition, never
an eviction of an in-flight adapter.
Trait Implementations§
Source§impl Clone for VictimError
impl Clone for VictimError
Source§fn clone(&self) -> VictimError
fn clone(&self) -> VictimError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for VictimError
impl Debug for VictimError
Source§impl PartialEq for VictimError
impl PartialEq for VictimError
impl Copy for VictimError
impl Eq for VictimError
impl StructuralPartialEq for VictimError
Auto Trait Implementations§
impl Freeze for VictimError
impl RefUnwindSafe for VictimError
impl Send for VictimError
impl Sync for VictimError
impl Unpin for VictimError
impl UnwindSafe for VictimError
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.