MultiplicativeGroup

Trait MultiplicativeGroup 

Source
pub trait MultiplicativeGroup:
    MultiplicativeMonoid
    + Div<Self, Output = Self>
    + DivAssign
    + Inv<Output = Self> { }
Expand description

Interface for a group with identity represented by one, operation defined by * and /

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> MultiplicativeGroup for T
where T: MultiplicativeMonoid + Div<Self, Output = Self> + DivAssign + Inv<Output = Self>,