pub trait DisjunctiveUnion<Rhs = Self>: Set {
type Output;
// Required method
fn disjunctive_union(self, rhs: Rhs) -> Self::Output;
}Expand description
DisjunctiveUnion (denoted by ⊖) is the disjunctive union of two sets.
Required Associated Types§
Required Methods§
fn disjunctive_union(self, rhs: Rhs) -> Self::Output
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.