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