Struct crossbeam_skiplist::base::RefEntry [−][src]
pub struct RefEntry<'a, K, V> { /* fields omitted */ }
A reference-counted entry in a skip list.
You must call release
to free this type, otherwise the node will be
leaked. This is because releasing the entry requires a Guard
.
Implementations
impl<'a, K: 'a, V: 'a> RefEntry<'a, K, V>
[src]
impl<'a, K: 'a, V: 'a> RefEntry<'a, K, V>
[src]pub fn is_removed(&self) -> bool
[src]
Returns true
if the entry is removed from the skip list.
pub fn key(&self) -> &K
[src]
Returns a reference to the key.
pub fn value(&self) -> &V
[src]
Returns a reference to the value.
pub fn skiplist(&self) -> &'a SkipList<K, V>
[src]
Returns a reference to the parent SkipList
pub fn release(self, guard: &Guard)
[src]
Releases the reference on the entry.
pub fn release_with_pin<F>(self, pin: F) where
F: FnOnce() -> Guard,
[src]
F: FnOnce() -> Guard,
Releases the reference of the entry, pinning the thread only when the reference count of the node becomes 0.
impl<K, V> RefEntry<'_, K, V> where
K: Ord + Send + 'static,
V: Send + 'static,
[src]
impl<K, V> RefEntry<'_, K, V> where
K: Ord + Send + 'static,
V: Send + 'static,
[src]impl<'a, K, V> RefEntry<'a, K, V> where
K: Ord,
[src]
impl<'a, K, V> RefEntry<'a, K, V> where
K: Ord,
[src]pub fn move_next(&mut self, guard: &Guard) -> bool
[src]
Moves to the next entry in the skip list.
pub fn next(&self, guard: &Guard) -> Option<RefEntry<'a, K, V>>
[src]
Returns the next entry in the skip list.
pub fn move_prev(&mut self, guard: &Guard) -> bool
[src]
Moves to the previous entry in the skip list.
pub fn prev(&self, guard: &Guard) -> Option<RefEntry<'a, K, V>>
[src]
Returns the previous entry in the skip list.
Trait Implementations
Auto Trait Implementations
impl<'a, K, V> !RefUnwindSafe for RefEntry<'a, K, V>
impl<'a, K, V> Send for RefEntry<'a, K, V> where
K: Send + Sync,
V: Send + Sync,
K: Send + Sync,
V: Send + Sync,
impl<'a, K, V> Sync for RefEntry<'a, K, V> where
K: Send + Sync,
V: Send + Sync,
K: Send + Sync,
V: Send + Sync,