pub struct FastSkipList<K, V> { /* private fields */ }Expand description
Ultra-fast lock-free skip list
Implementations§
Trait Implementations§
Source§impl<K, V> Drop for FastSkipList<K, V>
impl<K, V> Drop for FastSkipList<K, V>
impl<K: Send, V: Send> Send for FastSkipList<K, V>
impl<K: Send + Sync, V: Send + Sync> Sync for FastSkipList<K, V>
Auto Trait Implementations§
impl<K, V> !Freeze for FastSkipList<K, V>
impl<K, V> RefUnwindSafe for FastSkipList<K, V>where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<K, V> Unpin for FastSkipList<K, V>
impl<K, V> UnwindSafe for FastSkipList<K, V>
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