pub trait MonOps<T = Self>:
Sized
+ Mul<T, Output = T>
+ for<'a> Mul<&'a T, Output = T> { }Expand description
Helper trait bundling Mul impls so Mon can require all four
reference variants (T * T, T * &T, &T * T, &T * &T) via one HRTB.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".