pub trait PercentDifference<Rhs = Self> {
type Output;
// Required method
fn percent_difference(self, rhs: Rhs) -> Self::Output;
}Required Associated Types§
Required Methods§
Sourcefn percent_difference(self, rhs: Rhs) -> Self::Output
fn percent_difference(self, rhs: Rhs) -> Self::Output
Computes the percent difference between two values.