pub trait AddMonOps<T = Self>:
Sized
+ Add<T, Output = T>
+ for<'a> Add<&'a T, Output = T> { }Expand description
Helper trait bundling Add impls so AddMon 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".