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