Skip to main content

OccupiedEntry

Struct OccupiedEntry 

Source
pub struct OccupiedEntry<'h, K, V, H = RandomState>
where H: BuildHasher,
{ /* private fields */ }
Expand description

OccupiedEntry is a view into an occupied entry in a HashMap.

Implementations§

Source§

impl<'h, K, V, H> OccupiedEntry<'h, K, V, H>
where K: Eq + Hash, H: BuildHasher,

Source

pub fn key(&self) -> &K

Gets a reference to the key in the entry.

§Examples
use scc::HashMap;

let hashmap: HashMap<u64, u32> = HashMap::default();

assert_eq!(hashmap.entry_sync(29).or_default().key(), &29);
Source

pub fn remove_entry(self) -> (K, V)

Takes ownership of the key and value from the HashMap.

§Examples
use scc::HashMap;
use scc::hash_map::Entry;

let hashmap: HashMap<u64, u32> = HashMap::default();

hashmap.entry_sync(11).or_insert(17);

if let Entry::Occupied(o) = hashmap.entry_sync(11) {
    assert_eq!(o.remove_entry(), (11, 17));
};
Source

pub fn get(&self) -> &V

Gets a reference to the value in the entry.

§Examples
use scc::HashMap;
use scc::hash_map::Entry;

let hashmap: HashMap<u64, u32> = HashMap::default();

hashmap.entry_sync(19).or_insert(11);

if let Entry::Occupied(o) = hashmap.entry_sync(19) {
    assert_eq!(o.get(), &11);
};
Source

pub fn get_mut(&mut self) -> &mut V

Gets a mutable reference to the value in the entry.

§Examples
use scc::HashMap;
use scc::hash_map::Entry;

let hashmap: HashMap<u64, u32> = HashMap::default();

hashmap.entry_sync(37).or_insert(11);

if let Entry::Occupied(mut o) = hashmap.entry_sync(37) {
    *o.get_mut() += 18;
    assert_eq!(*o.get(), 29);
}

assert_eq!(hashmap.read_sync(&37, |_, v| *v), Some(29));
Source

pub fn insert(&mut self, val: V) -> V

Sets the value of the entry, and returns the old value.

§Examples
use scc::HashMap;
use scc::hash_map::Entry;

let hashmap: HashMap<u64, u32> = HashMap::default();

hashmap.entry_sync(37).or_insert(11);

if let Entry::Occupied(mut o) = hashmap.entry_sync(37) {
    assert_eq!(o.insert(17), 11);
}

assert_eq!(hashmap.read_sync(&37, |_, v| *v), Some(17));
Source

pub fn remove(self) -> V

Takes the value out of the entry, and returns it.

§Examples
use scc::HashMap;
use scc::hash_map::Entry;

let hashmap: HashMap<u64, u32> = HashMap::default();

hashmap.entry_sync(11).or_insert(17);

if let Entry::Occupied(o) = hashmap.entry_sync(11) {
    assert_eq!(o.remove(), 17);
};
Source

pub async fn remove_and_async( self, ) -> ((K, V), Option<OccupiedEntry<'h, K, V, H>>)

Removes the entry and gets the next closest occupied entry.

HashMap::begin_async and this method together allow the OccupiedEntry to effectively act as a mutable iterator over entries. This method never acquires more than one lock, even when it searches other buckets for the next closest occupied entry.

§Examples
use scc::HashMap;
use scc::hash_map::Entry;

let hashmap: HashMap<u64, u32> = HashMap::default();

assert!(hashmap.insert_sync(1, 0).is_ok());
assert!(hashmap.insert_sync(2, 0).is_ok());

let second_entry_future = hashmap.begin_sync().unwrap().remove_and_async();
Source

pub fn remove_and_sync(self) -> ((K, V), Option<Self>)

Removes the entry and gets the next closest occupied entry.

HashMap::begin_sync and this method together allow the OccupiedEntry to effectively act as a mutable iterator over entries. This method never acquires more than one lock, even when it searches other buckets for the next closest occupied entry.

§Examples
use scc::HashMap;
use scc::hash_map::Entry;

let hashmap: HashMap<u64, u32> = HashMap::default();

assert!(hashmap.insert_sync(1, 0).is_ok());
assert!(hashmap.insert_sync(2, 0).is_ok());

let first_entry = hashmap.begin_sync().unwrap();
let first_key = *first_entry.key();
let (removed, second_entry) = first_entry.remove_and_sync();
assert_eq!(removed.1, 0);
assert_eq!(hashmap.len(), 1);

let second_entry = second_entry.unwrap();
let second_key = *second_entry.key();

assert!(second_entry.remove_and_sync().1.is_none());
assert_eq!(first_key + second_key, 3);
Source

pub async fn next_async(self) -> Option<OccupiedEntry<'h, K, V, H>>

Gets the next closest occupied entry.

HashMap::begin_async and this method together allow the OccupiedEntry to effectively act as a mutable iterator over entries. This method never acquires more than one lock, even when it searches other buckets for the next closest occupied entry.

§Examples
use scc::HashMap;
use scc::hash_map::Entry;

let hashmap: HashMap<u64, u32> = HashMap::default();

assert!(hashmap.insert_sync(1, 0).is_ok());
assert!(hashmap.insert_sync(2, 0).is_ok());

let second_entry_future = hashmap.begin_sync().unwrap().next_async();
Source

pub fn next_sync(self) -> Option<Self>

Gets the next closest occupied entry.

HashMap::begin_sync and this method together allow the OccupiedEntry to effectively act as a mutable iterator over entries. This method never acquires more than one lock, even when it searches other buckets for the next closest occupied entry.

§Examples
use scc::HashMap;
use scc::hash_map::Entry;

let hashmap: HashMap<u64, u32> = HashMap::default();

assert!(hashmap.insert_sync(1, 0).is_ok());
assert!(hashmap.insert_sync(2, 0).is_ok());

let first_entry = hashmap.begin_sync().unwrap();
let first_key = *first_entry.key();
let second_entry = first_entry.next_sync().unwrap();
let second_key = *second_entry.key();

assert!(second_entry.next_sync().is_none());
assert_eq!(first_key + second_key, 3);

Trait Implementations§

Source§

impl<K, V, H> Debug for OccupiedEntry<'_, K, V, H>
where K: Debug + Eq + Hash, V: Debug, H: BuildHasher,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<K, V, H> Deref for OccupiedEntry<'_, K, V, H>
where K: Eq + Hash, H: BuildHasher,

Source§

type Target = V

The resulting type after dereferencing.
Source§

fn deref(&self) -> &Self::Target

Dereferences the value.
Source§

impl<K, V, H> DerefMut for OccupiedEntry<'_, K, V, H>
where K: Eq + Hash, H: BuildHasher,

Source§

fn deref_mut(&mut self) -> &mut Self::Target

Mutably dereferences the value.

Auto Trait Implementations§

§

impl<'h, K, V, H> Freeze for OccupiedEntry<'h, K, V, H>

§

impl<'h, K, V, H = RandomState> !RefUnwindSafe for OccupiedEntry<'h, K, V, H>

§

impl<'h, K, V, H> Send for OccupiedEntry<'h, K, V, H>
where K: Send + Sync, V: Send + Sync, H: Sync,

§

impl<'h, K, V, H> Sync for OccupiedEntry<'h, K, V, H>
where K: Send + Sync, V: Send + Sync, H: Sync,

§

impl<'h, K, V, H> Unpin for OccupiedEntry<'h, K, V, H>

§

impl<'h, K, V, H> UnsafeUnpin for OccupiedEntry<'h, K, V, H>

§

impl<'h, K, V, H = RandomState> !UnwindSafe for OccupiedEntry<'h, K, V, H>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<P, T> Receiver for P
where P: Deref<Target = T> + ?Sized, T: ?Sized,

Source§

type Target = T

🔬This is a nightly-only experimental API. (arbitrary_self_types)
The target type on which the method may be called.
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.