Trait data_structure_traits::InsertMut [] [src]

pub trait InsertMut<K, V>: CollectionMut {
    type Output;
    fn insert(&mut self, key: K, element: V) -> Self::Output;
}

Associated Types

Required Methods

Implementors