pub trait ApproxEq {
// Required methods
fn approxeq(&self, other: &Self, _ulps: i64) -> bool;
fn fmt(&self, f: &mut Formatter<'_>) -> Result;
}Required Methods§
fn approxeq(&self, other: &Self, _ulps: i64) -> bool
fn fmt(&self, f: &mut Formatter<'_>) -> Result
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.