pub trait SignificantlyDifferent<Rhs: ?Sized = Self> { type Epsilon; // Required method fn ne(&self, other: &Rhs, epsilon: Self::Epsilon) -> bool; }
This method tests for self and other values to be significantly different
self
other