pub trait ScalarMath {
// Required methods
fn clip(&self, min_thresh: Self, max_thresh: Self) -> Self;
fn logsafe(&self) -> Self;
}Expand description
Scalar operations on FloatT
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.