pub trait _: 'static + ToBits + ToBytes + FromBytes + Copy + Clone + Debug + Display + Default + Send + Sync + Eq + for<'a> One<Output = Self, Output = Self> + Ord + Neg<Output = Self> + Uniform + Zero + Sized + Hash + From<u128> + From<u64> + From<u32> + From<u16> + From<u8> + for<'a> Add<Self, Output = Self, Output = Self> + for<'a> Sub<Self, Output = Self, Output = Self> + Mul<Self> + for<'a> Div<Self, Output = Self, Output = Self> + AddAssign<Self> + SubAssign<Self> + MulAssign<Self> + DivAssign<Self> + for<'a> Add<&'a Self> + for<'a> Sub<&'a Self> + for<'a> Mul<&'a Self> + for<'a> Div<&'a Self> + for<'a> AddAssign<&'a Self> + for<'a> SubAssign<&'a Self> + for<'a> MulAssign<&'a Self> + for<'a> DivAssign<&'a Self> + Sum<Self> + for<'a> Sum<&'a Self> + Product<Self> + for<'a> Product<&'a Self> + CanonicalSerialize + CanonicalSerializeWithFlags + CanonicalDeserialize + CanonicalDeserializeWithFlags + Serialize + for<'a> Deserialize<'a> {
    type BasePrimeField: PrimeField;

Show 14 methods // Required methods fn from_base_prime_field(other: Self::BasePrimeField) -> Self; fn characteristic<'a>() -> &'a [u64]; fn double(&self) -> Self; fn double_in_place(&mut self); fn square(&self) -> Self; fn square_in_place(&mut self) -> &mut Self; fn inverse(&self) -> Option<Self>; fn inverse_in_place(&mut self) -> Option<&mut Self>; fn frobenius_map(&mut self, power: usize); fn from_random_bytes_with_flags<F>(bytes: &[u8]) -> Option<(Self, F)> where F: Flags; // Provided methods fn half() -> Self { ... } fn sum_of_products<'a>( a: impl Iterator<Item = &'a Self> + Clone, b: impl Iterator<Item = &'a Self> + Clone ) -> Self { ... } fn pow<S>(&self, exp: S) -> Self where S: AsRef<[u64]> { ... } fn from_random_bytes(bytes: &[u8]) -> Option<Self> { ... }
}
Expand description

The interface for a generic field.

Required Associated Types§

Required Methods§

fn from_base_prime_field(other: Self::BasePrimeField) -> Self

Constructs an element of Self from an element of the base prime field.

fn characteristic<'a>() -> &'a [u64]

Returns the characteristic of the field.

fn double(&self) -> Self

Returns self + self.

fn double_in_place(&mut self)

Doubles self in place.

fn square(&self) -> Self

Returns self * self.

fn square_in_place(&mut self) -> &mut Self

Squares self in place.

fn inverse(&self) -> Option<Self>

Computes the multiplicative inverse of self if self is nonzero.

fn inverse_in_place(&mut self) -> Option<&mut Self>

Sets self to self’s inverse if it exists. Otherwise it is a no-op.

fn frobenius_map(&mut self, power: usize)

Exponentiates this element by a power of the base prime modulus via the Frobenius automorphism.

fn from_random_bytes_with_flags<F>(bytes: &[u8]) -> Option<(Self, F)>where F: Flags,

Returns a field element with an extra sign bit used for group parsing if the set of bytes forms a valid field element, otherwise returns None. This function is primarily intended for sampling random field elements from a hash-function or RNG output.

Provided Methods§

fn half() -> Self

Returns the constant 2^{-1}.

fn sum_of_products<'a>( a: impl Iterator<Item = &'a Self> + Clone, b: impl Iterator<Item = &'a Self> + Clone ) -> Self

fn pow<S>(&self, exp: S) -> Selfwhere S: AsRef<[u64]>,

Exponentiates this element by a number represented with u64 limbs, least significant limb first.

fn from_random_bytes(bytes: &[u8]) -> Option<Self>

Returns a field element if the set of bytes forms a valid field element, otherwise returns None. This function is primarily intended for sampling random field elements from a hash-function or RNG output.

Implementors§

§

impl<P> Field for Fp2<P>where P: Fp2Parameters,

§

type BasePrimeField = <P as Fp2Parameters>::Fp

§

impl<P> Field for Fp6<P>where P: Fp6Parameters,

§

type BasePrimeField = <Fp2<<P as Fp6Parameters>::Fp2Params> as Field>::BasePrimeField

§

impl<P> Field for Fp12<P>where P: Fp12Parameters,

§

type BasePrimeField = <Fp6<<P as Fp12Parameters>::Fp6Params> as Field>::BasePrimeField

§

impl<P> Field for Fp256<P>where P: Fp256Parameters,

§

type BasePrimeField = Fp256<P>

§

impl<P> Field for Fp384<P>where P: Fp384Parameters,

§

type BasePrimeField = Fp384<P>