pub struct SkipList<K, V> { /* private fields */ }Expand description
A lock-free skip list, generic over keys and values.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<K, V> RefUnwindSafe for SkipList<K, V>
impl<K, V> Send for SkipList<K, V>
impl<K, V> Sync for SkipList<K, V>
impl<K, V> Unpin for SkipList<K, V>
impl<K, V> UnwindSafe for SkipList<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