Trait SupersetOf

Source
pub unsafe trait SupersetOf<S> { }
Expand description

Implemented if a set is a superset of S.

§Safety

Implementing this is unsafe, for custom set-types, implement AsSet instead.

Implementors§

Source§

impl<T, S> SupersetOf<S> for T
where S: SubsetOf<T>,