wiwi::num

Trait FromF64

Source
pub trait FromF64
where Self: Sealed,
{ // Required method fn from_f64(value: f64) -> Self; }
Expand description

Trait for number types that can be converted from f64, losslessly

Required Methods§

Source

fn from_f64(value: f64) -> Self

Convert from a f64 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.

Implementations on Foreign Types§

Source§

impl FromF64 for f64

Source§

fn from_f64(value: f64) -> f64

Implementors§