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