pub enum Entry<'a, K, V, const N: usize> {
Occupied(OccupiedEntry<'a, K, V, N>),
Vacant(VacantEntry<'a, K, V, N>),
}Expand description
A view into an entry in the map
Variants§
Occupied(OccupiedEntry<'a, K, V, N>)
The entry corresponding to the key K exists in the map
Vacant(VacantEntry<'a, K, V, N>)
The entry corresponding to the key K does not exist in the map