pub struct FullCache<K, V> { /* private fields */ }Expand description
A naive cache storing all key-value pairs it learns about.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<K, V> Freeze for FullCache<K, V>
impl<K, V> RefUnwindSafe for FullCache<K, V>where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<K, V> Send for FullCache<K, V>
impl<K, V> Sync for FullCache<K, V>
impl<K, V> Unpin for FullCache<K, V>
impl<K, V> UnwindSafe for FullCache<K, V>where
K: RefUnwindSafe,
V: RefUnwindSafe,
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