pub enum Entry<'a, K, V, H, const I: usize> {
Occupied(OccupiedEntry<'a, K, V, H, I>),
Vacant(VacantEntry<'a, K, V, H, I>),
}
Variants§
Occupied(OccupiedEntry<'a, K, V, H, I>)
Vacant(VacantEntry<'a, K, V, H, I>)
Implementations§
Source§impl<'a, K: Eq + Hash, V, H: BuildHasher + Default + 'a, const I: usize> Entry<'a, K, V, H, I>
impl<'a, K: Eq + Hash, V, H: BuildHasher + Default + 'a, const I: usize> Entry<'a, K, V, H, I>
Auto Trait Implementations§
impl<'a, K, V, H, const I: usize> Freeze for Entry<'a, K, V, H, I>where
K: Freeze,
impl<'a, K, V, H, const I: usize> RefUnwindSafe for Entry<'a, K, V, H, I>
impl<'a, K, V, H, const I: usize> !Send for Entry<'a, K, V, H, I>
impl<'a, K, V, H, const I: usize> !Sync for Entry<'a, K, V, H, I>
impl<'a, K, V, H, const I: usize> Unpin for Entry<'a, K, V, H, I>where
K: Unpin,
impl<'a, K, V, H, const I: usize> !UnwindSafe for Entry<'a, K, V, H, I>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more