pub trait Difference<RHS = Self> {
type Output;
// Required method
fn difference(&self, rhs: &RHS) -> Self::Output;
}pub trait Difference<RHS = Self> {
type Output;
// Required method
fn difference(&self, rhs: &RHS) -> Self::Output;
}