pub struct Fr(/* private fields */);
Trait Implementations§
Source§impl Field for Fr
impl Field for Fr
Source§fn add_assign(&mut self, other: &Fr)
fn add_assign(&mut self, other: &Fr)
Adds another element to this element.
Source§fn sub_assign(&mut self, other: &Fr)
fn sub_assign(&mut self, other: &Fr)
Subtracts another element from this element.
Source§fn inverse(&self) -> Option<Fr>
fn inverse(&self) -> Option<Fr>
Computes the multiplicative inverse of this element, if nonzero.
Source§fn frobenius_map(&mut self, _: usize)
fn frobenius_map(&mut self, _: usize)
Exponentiates this element by a power of the base prime modulus via
the Frobenius automorphism.
Source§fn mul_assign(&mut self, other: &Fr)
fn mul_assign(&mut self, other: &Fr)
Multiplies another element by this element.
Source§impl MulAssign<Fr> for Poly
impl MulAssign<Fr> for Poly
Source§fn mul_assign(&mut self, rhs: Fr)
fn mul_assign(&mut self, rhs: Fr)
Performs the
*=
operation. Read moreSource§impl Ord for Fr
Elements are ordered lexicographically.
impl Ord for Fr
Elements are ordered lexicographically.
Source§impl PartialOrd for Fr
impl PartialOrd for Fr
Source§impl PrimeField for Fr
impl PrimeField for Fr
Source§const CAPACITY: u32 = 254u32
const CAPACITY: u32 = 254u32
How many bits of information can be reliably stored in the field element.
Source§type Repr = FrRepr
type Repr = FrRepr
The prime field can be converted back and forth into this biginteger
representation.
Source§fn from_repr(r: FrRepr) -> Result<Fr, PrimeFieldDecodingError>
fn from_repr(r: FrRepr) -> Result<Fr, PrimeFieldDecodingError>
Convert this prime field element into a biginteger representation.
Source§fn into_repr(&self) -> FrRepr
fn into_repr(&self) -> FrRepr
Convert a biginteger representation into a prime field element, if
the number is an element of the field.
Source§fn multiplicative_generator() -> Fr
fn multiplicative_generator() -> Fr
Returns the multiplicative generator of
char()
- 1 order. This element
must also be quadratic nonresidue.Source§fn root_of_unity() -> Fr
fn root_of_unity() -> Fr
Returns the 2^s root of unity computed by exponentiating the
multiplicative_generator()
by t.impl Copy for Fr
impl Eq for Fr
Auto Trait Implementations§
impl Freeze for Fr
impl RefUnwindSafe for Fr
impl Send for Fr
impl Sync for Fr
impl Unpin for Fr
impl UnwindSafe for Fr
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more