Skip to main content

SupersetOf

Trait SupersetOf 

Source
pub trait SupersetOf<S: ?Sized> { }
Expand description

Indicates that a type is a superset of set S.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<S1: ?Sized, S2> SupersetOf<S2> for S1
where S2: SubsetOf<S1> + ?Sized,