Contains

Trait Contains 

Source
pub trait Contains<E> { }
Expand description

Indicates that a set contains element E.

Implementors§

Source§

impl<T, E> Contains<E> for Set<T>
where T: Contains<E> + ?Sized,

Source§

impl<T, E> Contains<E> for T
where T: AsSet, <T as AsSet>::Set: Contains<E>,