pub enum Entry<'a, Key, Value, HashBuilder> {
Occupied(OccupiedEntry<'a, Key, Value, HashBuilder>),
Vacant(VacantEntry<'a, Key, Value, HashBuilder>),
}
Expand description
A possible entry for a key in a BudMap
.
Variants§
Occupied(OccupiedEntry<'a, Key, Value, HashBuilder>)
There is an entry for this key that contains a value.
Vacant(VacantEntry<'a, Key, Value, HashBuilder>)
There is not currently an entry for this key.