Trait PercentDiff

Source
pub trait PercentDiff<Rhs = Self> {
    type Output;

    // Required method
    fn percent_diff(self, rhs: Rhs) -> Self::Output;
}

Required Associated Types§

Required Methods§

Source

fn percent_diff(self, rhs: Rhs) -> Self::Output

Implementors§