pub struct ConcurrentLruCache<V, const N: usize> { /* private fields */ }
Expand description
Sharded concurrent data structure for LruCache
Implementations§
Source§impl<V, const N: usize> ConcurrentLruCache<V, N>
impl<V, const N: usize> ConcurrentLruCache<V, N>
Auto Trait Implementations§
impl<V, const N: usize> !Freeze for ConcurrentLruCache<V, N>
impl<V, const N: usize> !RefUnwindSafe for ConcurrentLruCache<V, N>
impl<V, const N: usize> Send for ConcurrentLruCache<V, N>where
V: Send,
impl<V, const N: usize> Sync for ConcurrentLruCache<V, N>
impl<V, const N: usize> Unpin for ConcurrentLruCache<V, N>
impl<V, const N: usize> UnwindSafe for ConcurrentLruCache<V, N>where
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