pub trait FuzzyEq<Rhs: ?Sized = Self> {
// Required method
fn fuzzy_eq(&self, other: &Rhs) -> bool;
// Provided method
fn fuzzy_ne(&self, other: &Rhs) -> bool { ... }
}
Expand description
A trait for fuzzy/approximate equality comparisons of float numbers.