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.

Implementations on Foreign Types§

Source§

impl MultiplicativeGroup for f32

Source§

impl MultiplicativeGroup for f64

Source§

impl<U> MultiplicativeGroup for FixedI8<U>
where U: Unsigned + IsLessOrEqual<U6, Output = True> + LtU8,

Source§

impl<U> MultiplicativeGroup for FixedI16<U>
where U: Unsigned + IsLessOrEqual<U14, Output = True> + LtU16,

Source§

impl<U> MultiplicativeGroup for FixedI32<U>
where U: Unsigned + IsLessOrEqual<U30, Output = True> + LtU32,

Source§

impl<U> MultiplicativeGroup for FixedI64<U>
where U: Unsigned + IsLessOrEqual<U62, Output = True> + LtU64,

Implementors§