Trait data_structure_traits::Insert [] [src]

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

Associated Types

Required Methods

Implementors