data_structure_traits 0.1.12

data structure collection traits
Documentation
pub trait Insert<K, V>
where
    K: ?Sized,
    V: ?Sized,
{
    type Output: ?Sized;

    fn insert(&mut self, K, V) -> Self::Output;
}