pub trait TestFloat:
Copy
+ PartialOrd
+ Sub<Output = Self>
+ Add<Output = Self>
+ Mul<Output = Self>
+ Abs
+ Max
+ Display {
const RTOL: Self;
const ATOL: Self;
}Expand description
used in tests
Required Associated Constants§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".