Trait Set

Source
pub trait Set<'a, V, Q>: Collection + Get<&'a Q, Output = V>
where V: 'a + ?Sized + Borrow<Q>, Q: 'a + ?Sized,
{ // Provided method fn contains(&self, q: &'a Q) -> bool { ... } }

Provided Methods§

Source

fn contains(&self, q: &'a Q) -> bool

Implementors§

Source§

impl<'a, V, Q, T> Set<'a, V, Q> for T
where T: 'a + Collection + Get<&'a Q, Output = V>, V: 'a + ?Sized + Borrow<Q>, Q: 'a + ?Sized,