Trait type_sets::Contains

source ·
pub unsafe trait Contains<E> { }
Expand description

Indicates that a set contains element E.

Safety

Implement AsSet instead.

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::Set: Contains<E>,