pub trait SubByRef<Rhs = Self> { type Output; // Required method fn sub_by_ref(&self, rhs: &Rhs) -> Self::Output; }