pub trait Group: Send + Sync + Copy + Clone + PartialEq + Eq + Sized + Add<Self, Output = Self> + Sub<Self, Output = Self> + Neg<Output = Self> + Mul<Fr, Output = Self> {
    fn zero() -> Self;
fn one() -> Self;
fn random<R: Rng>(rng: &mut R) -> Self;
fn is_zero(&self) -> bool;
fn normalize(&mut self);
fn multiexp(items: &[(Self, Fr)]) -> Self; }

Required methods

Implementors