pub trait GroupTrait<S>: Add<Self, Output = Self> + AddAssign<Self> + Clone + Double<Output = Self> + Eject + Equal<Self> + Inject + Mul<S, Output = Self> + MulAssign<S> + Neg<Output = Self> + Parser + Sub<Self, Output = Self> + SubAssign<Self> + Ternary + TypeName + Zero where
    S: ScalarTrait
{ }
Expand description

Representation of a group element.

Implementors