pub trait IeeeBinary {
// Required methods
fn ieee_binary32() -> Self;
fn ieee_binary64() -> Self;
}
Expand description
Trait for structure that have an IEEE binary standard form.
Required Methods§
fn ieee_binary32() -> Self
fn ieee_binary64() -> Self
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.