pub trait SymmetricDifferenceMut<Rhs> {
// Required method
fn symmetric_difference_mut(&mut self, other: &Rhs);
}Required Methods§
Sourcefn symmetric_difference_mut(&mut self, other: &Rhs)
fn symmetric_difference_mut(&mut self, other: &Rhs)
Replaces self with the set symmetric difference of self and other.