Struct scc::hash_index::VacantEntry

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

VacantEntry is a view into a vacant entry in a HashIndex.

Implementations§

source§

impl<'h, K, V, H> VacantEntry<'h, K, V, H>
where K: 'static + Clone + Eq + Hash, V: 'static + Clone, H: BuildHasher,

source

pub fn key(&self) -> &K

Gets a reference to the key.

§Examples
use scc::HashIndex;

let hashindex: HashIndex<u64, u32> = HashIndex::default();
assert_eq!(hashindex.entry(11).key(), &11);
source

pub fn into_key(self) -> K

Takes ownership of the key.

§Examples
use scc::HashIndex;
use scc::hash_index::Entry;

let hashindex: HashIndex<u64, u32> = HashIndex::default();

if let Entry::Vacant(v) = hashindex.entry(17) {
    assert_eq!(v.into_key(), 17);
};
source

pub fn insert_entry(self, val: V) -> OccupiedEntry<'h, K, V, H>

Sets the value of the entry with its key, and returns an OccupiedEntry.

§Examples
use scc::HashIndex;
use scc::hash_index::Entry;

let hashindex: HashIndex<u64, u32> = HashIndex::default();

if let Entry::Vacant(o) = hashindex.entry(19) {
    o.insert_entry(29);
}

assert_eq!(hashindex.peek_with(&19, |_, v| *v), Some(29));

Trait Implementations§

source§

impl<'h, K, V, H> Debug for VacantEntry<'h, K, V, H>
where K: 'static + Clone + Debug + Eq + Hash, V: 'static + Clone + Debug, H: BuildHasher,

source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'h, K, V, H> Freeze for VacantEntry<'h, K, V, H>
where K: Freeze,

§

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

§

impl<'h, K, V, H> Send for VacantEntry<'h, K, V, H>
where K: Send + Eq + Hash + Sync, V: Send + Sync, H: Sync,

§

impl<'h, K, V, H> Sync for VacantEntry<'h, K, V, H>
where K: Sync, H: Sync, V: Sync,

§

impl<'h, K, V, H> Unpin for VacantEntry<'h, K, V, H>
where K: Unpin,

§

impl<'h, K, V, H = RandomState> !UnwindSafe for VacantEntry<'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<T, U> TryFrom<U> for T
where U: Into<T>,

§

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>,

§

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.