Struct linked_hash_map::VacantEntry
source · [−]pub struct VacantEntry<'a, K: 'a, V: 'a, S: 'a = RandomState> { /* private fields */ }
Expand description
A view into a single empty location in a LinkedHashMap
.
Implementations
sourceimpl<'a, K: 'a + Hash + Eq, V: 'a, S: BuildHasher> VacantEntry<'a, K, V, S>
impl<'a, K: 'a + Hash + Eq, V: 'a, S: BuildHasher> VacantEntry<'a, K, V, S>
Auto Trait Implementations
impl<'a, K, V, S> RefUnwindSafe for VacantEntry<'a, K, V, S> where
K: RefUnwindSafe,
S: RefUnwindSafe,
V: RefUnwindSafe,
impl<'a, K, V, S> Send for VacantEntry<'a, K, V, S> where
K: Send,
S: Send,
V: Send,
impl<'a, K, V, S> Sync for VacantEntry<'a, K, V, S> where
K: Sync,
S: Sync,
V: Sync,
impl<'a, K, V, S> Unpin for VacantEntry<'a, K, V, S> where
K: Unpin,
impl<'a, K, V, S = RandomState> !UnwindSafe for VacantEntry<'a, K, V, S>
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