pub trait Fromf64 {
// Required method
fn fromf64(value: f64) -> Self;
}Expand description
Trait to convert reduction’s scalar output to appropriate output type
This is an internal trait and ideally of no use to user usecases.
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.