pub trait PrecisionSelector {
type HighPrecision: LinalgScalar;
type LowPrecision: LinalgScalar;
// Provided method
fn should_use_high_precision(_inputcondition: f64) -> bool { ... }
}
Expand description
Precision trait for automatic precision selection
Required Associated Types§
Provided Methods§
fn should_use_high_precision(_inputcondition: f64) -> bool
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.