pub trait FloatBits:
Copy
+ PartialEq
+ Debug
+ Display {
type Bits: Copy + Eq + Hash;
// Required methods
fn to_bits(self) -> Self::Bits;
fn is_finite(self) -> bool;
fn zero() -> Self;
}Expand description
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".