pub trait DecodableFloat: RawFloat + Copy {
// Required method
fn min_pos_norm_value() -> Self;
}
🔬This is a nightly-only experimental API. (
flt2dec
)Expand description
A floating point type which can be decode
d.
Required Methods§
Sourcefn min_pos_norm_value() -> Self
🔬This is a nightly-only experimental API. (flt2dec
)
fn min_pos_norm_value() -> Self
flt2dec
)The minimum positive normalized value.
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.
Implementors§
impl DecodableFloat for f16
Available on
target_has_reliable_f16
only.