pub trait ApproxEq<Rhs = Self> { // Required method fn approx_eq(&self, other: &Rhs, tolerance: f64) -> bool; }
A trait for approximate equality.
Whether the value is within the tolerance of the other one.