pub trait Numeric<T: Float>:
PowOps<Float = T>
+ TrigOps
+ ExpLogOps<Float = T>
+ Neg<Output = Self>
+ Add<Output = Self>
+ Mul<Output = Self>
+ Div<Output = Self>
+ Sub<Output = Self>
+ Add<T, Output = Self>
+ Mul<T, Output = Self>
+ Div<T, Output = Self>
+ Sub<T, Output = Self>
+ Clone { }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.