Trait data_structure_traits::Map[][src]

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

Provided Methods

Implementors