TimesGroup

Trait TimesGroup 

Source
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.

Implementors§

Source§

impl<T: TimesSemiGroup + Div<Output = T> + for<'a> Div<&'a T, Output = T> + DivAssign + for<'a> DivAssign<&'a T> + Rem<Output = T> + for<'a> Rem<&'a T, Output = T> + RemAssign + for<'a> RemAssign<&'a T>> TimesGroup for T