concision_math/traits/
difference.rs

1pub trait PercentDiff<Rhs = Self> {
2    type Output;
3
4    fn percent_diff(self, rhs: Rhs) -> Self::Output;
5}