pub trait FloatBits: Sized {
type Bits;
// Required methods
fn to_bits(self) -> Self::Bits;
fn from_bits(bits: Self::Bits) -> Self;
}Expand description
Raw IEEE 754 bit-pattern access.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".