pub struct AdaptiveLruCache<V> { /* private fields */ }Expand description
Adaptive LRU cache that self-tunes capacity based on hit rate.
Implementations§
Source§impl<V> AdaptiveLruCache<V>
impl<V> AdaptiveLruCache<V>
Auto Trait Implementations§
impl<V> Freeze for AdaptiveLruCache<V>
impl<V> RefUnwindSafe for AdaptiveLruCache<V>where
V: RefUnwindSafe,
impl<V> Send for AdaptiveLruCache<V>where
V: Send,
impl<V> Sync for AdaptiveLruCache<V>where
V: Sync,
impl<V> Unpin for AdaptiveLruCache<V>where
V: Unpin,
impl<V> UnsafeUnpin for AdaptiveLruCache<V>
impl<V> UnwindSafe for AdaptiveLruCache<V>where
V: 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