pub struct DummyHashMapRawVacantEntry<'c, K, V> { /* private fields */ }
Expand description
Raw vacant entry of a HashMap.
This is acquired from the get_raw_entry
method, and can insert into
the HashMap when provided a (K, V)
tuple where K hashes to the hash used
to aquire this entry. Inserting with a (K, V) tuple gives a DummyHashMapOccupiedEntry
Trait Implementations
sourceimpl<'c, K, V> VacantEntry<'c> for DummyHashMapRawVacantEntry<'c, K, V>
impl<'c, K, V> VacantEntry<'c> for DummyHashMapRawVacantEntry<'c, K, V>
Auto Trait Implementations
impl<'c, K, V> RefUnwindSafe for DummyHashMapRawVacantEntry<'c, K, V> where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<'c, K, V> Send for DummyHashMapRawVacantEntry<'c, K, V> where
K: Send,
V: Send,
impl<'c, K, V> Sync for DummyHashMapRawVacantEntry<'c, K, V> where
K: Sync,
V: Sync,
impl<'c, K, V> Unpin for DummyHashMapRawVacantEntry<'c, K, V>
impl<'c, K, V> !UnwindSafe for DummyHashMapRawVacantEntry<'c, K, V>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more