Trait solana_runtime::contains::Contains[][src]

pub trait Contains<'a, T: Eq + Hash> {
    type Item: Borrow<T>;
    type Iter: Iterator<Item = Self::Item>;
    fn contains(&self, key: &T) -> bool;
fn contains_iter(&'a self) -> Self::Iter; }

Associated Types

Required methods

Implementations on Foreign Types

Implementors