pub trait BinaryFloat: Num + PartialOrd {
type Expo: Integer;
// Required methods
fn bits() -> Self::Expo;
fn eps() -> Self;
fn two_powi(p: Self::Expo) -> Self;
}Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".