pub struct DummyHashMapVacantEntry<'c, K, V> { /* private fields */ }
Expand description
Vacant entry of a HashMap.
This contains the key used to search for this entry, and can read that key, or insert into the HashMap at that key, when provided a value.
Trait Implementations
sourceimpl<'c, K, V> KeyedVacantEntry<'c> for DummyHashMapVacantEntry<'c, K, V>
impl<'c, K, V> KeyedVacantEntry<'c> for DummyHashMapVacantEntry<'c, K, V>
sourceimpl<'c, K, V> VacantEntry<'c> for DummyHashMapVacantEntry<'c, K, V>
impl<'c, K, V> VacantEntry<'c> for DummyHashMapVacantEntry<'c, K, V>
Auto Trait Implementations
impl<'c, K, V> RefUnwindSafe for DummyHashMapVacantEntry<'c, K, V> where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<'c, K, V> Send for DummyHashMapVacantEntry<'c, K, V> where
K: Send,
V: Send,
impl<'c, K, V> Sync for DummyHashMapVacantEntry<'c, K, V> where
K: Sync,
V: Sync,
impl<'c, K, V> Unpin for DummyHashMapVacantEntry<'c, K, V>
impl<'c, K, V> !UnwindSafe for DummyHashMapVacantEntry<'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