pub trait DFloat: Float {
type H: HFloat<D = Self>;
// Required method
fn narrow(self) -> Self::H;
}
Expand description
Trait for floats twice the bit width of another integer.
Required Associated Types§
Required Methods§
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.