Trait snarkvm_curves::traits::group::Group[][src]

pub trait Group: ToBytes + FromBytes + Copy + Clone + Debug + Display + Default + Send + Sync + 'static + Eq + Hash + Neg<Output = Self> + UniformRand + Zero + for<'a> Add<&'a Self, Output = Self> + for<'a> Sub<&'a Self, Output = Self> + for<'a> AddAssign<&'a Self> + for<'a> SubAssign<&'a Self> {
    type ScalarField: PrimeField + Into<<Self::ScalarField as PrimeField>::BigInteger>;
    fn double(&self) -> Self;
fn double_in_place(&mut self) -> &mut Self; fn mul(&self, other: &Self::ScalarField) -> Self { ... }
fn mul_assign(&mut self, other: &Self::ScalarField) { ... } }

Associated Types

Required methods

Returns self + self.

Sets self := self + self.

Provided methods

Implementors