pub trait TimesGroup:
TimesSemiGroup
+ Div<Output = Self>
+ for<'a> Div<&'a Self, Output = Self>
+ DivAssign
+ for<'a> DivAssign<&'a Self>
+ Rem<Output = Self>
+ for<'a> Rem<&'a Self, Output = Self>
+ RemAssign
+ for<'a> RemAssign<&'a Self> { }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.