Trait type_sets::SupersetOf

source ·
pub trait SupersetOf<S>: SealedSupersetOf<S> { }
Expand description

Implemented if set is a superset of S.

This trait is sealed, implement AsSet instead.

Implementors§

source§

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