pub trait Equivalent<K>where
    K: ?Sized,{
    // Required method
    fn equivalent(&self, key: &K) -> bool;
}

Required Methods§

source

fn equivalent(&self, key: &K) -> bool

Implementors§

source§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,