pub trait KeyHashMapAssertions<'s, K: Hash + Eq, V> {
    fn contains_key<E: Borrow<K>>(&mut self, expected_key: E) -> Spec<'s, V>;
    fn does_not_contain_key<E: Borrow<K>>(&mut self, expected_key: E);
}

Required Methods§

Implementors§