pub trait SignificantlyDifferent<Rhs: ?Sized = Self> {
    type Epsilon;

    fn ne(&self, other: &Rhs, epsilon: Self::Epsilon) -> bool;
}

Required Associated Types

Required Methods

This method tests for self and other values to be significantly different

Implementors