pub trait SymmetricDifference<Rhs> {
type Output;
// Required method
fn symmetric_difference(&self, other: &Rhs) -> Self::Output;
}Required Associated Types§
Required Methods§
Sourcefn symmetric_difference(&self, other: &Rhs) -> Self::Output
fn symmetric_difference(&self, other: &Rhs) -> Self::Output
Returns the set symmetric difference of self and other.