Skip to main content

SetEqual

Trait SetEqual 

Source
pub trait SetEqual<R: ?Sized> { }
Expand description

Indicates that two sets are equal, i.e., they contain the same members.

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§

Source§

impl<T, R: TypeSet> SetEqual<R> for T
where T: SubsetOf<R> + SupersetOf<R> + TypeSet,