Trait type_sets::Contains

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

Indicates that a set contains element E.

This trait is sealed, implemente 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>,