pub trait EntryMut<K, V> {
    fn key_mut(&mut self) -> &mut K;
    fn value_mut(&mut self) -> &mut V;
}

Required Methods

Implementors