Trait data_structure_traits::MapMut [] [src]

pub trait MapMut<'a, K, Q: ?Sized, V>: CollectionMut + InsertMut<K, V, Output = Option<V>> + RemoveMut<&'a Q, Output = Option<V>> + Get<&'a Q, Output = V> + GetMut<&'a Q, Output = V> + Iterable<'a, (&'a K, &'a V)> + IterableMut<'a, (&'a K, &'a mut V)> where
    K: 'a + Borrow<Q>,
    Q: 'a,
    V: 'a, 
{ fn contains_key(&self, k: &Q) -> bool; }

Required Methods

Implementors