Trait data_structure_traits::Map [] [src]

pub trait Map<'a, K: ?Sized, Q: ?Sized, V: ?Sized>: Collection + Get<&'a Q, Output = V> where
    &'a Self: 'a + IntoIterator<Item = (&'a K, &'a V)>,
    K: 'a + Borrow<Q>,
    Q: 'a,
    V: 'a, 
{ fn contains_key(&self, q: &'a Q) -> bool { ... } }

Provided Methods

Implementors