Struct ark_ff::fields::models::Fp832[][src]

pub struct Fp832<P>(pub BigInteger832, _);

Implementations

impl<P> Fp832<P>[src]

pub const fn new(element: BigInteger832) -> Self[src]

Trait Implementations

impl<'a, P: Fp832Parameters> Add<&'a Fp832<P>> for Fp832<P>[src]

type Output = Self

The resulting type after applying the + operator.

impl<'a, P: Fp832Parameters> Add<&'a mut Fp832<P>> for Fp832<P>[src]

type Output = Self

The resulting type after applying the + operator.

impl<P: Fp832Parameters> Add<Fp832<P>> for Fp832<P>[src]

type Output = Self

The resulting type after applying the + operator.

impl<'a, P: Fp832Parameters> AddAssign<&'a Fp832<P>> for Fp832<P>[src]

impl<'a, P: Fp832Parameters> AddAssign<&'a mut Fp832<P>> for Fp832<P>[src]

impl<P: Fp832Parameters> AddAssign<Fp832<P>> for Fp832<P>[src]

impl<P: Fp832Parameters> CanonicalDeserialize for Fp832<P>[src]

impl<P: Fp832Parameters> CanonicalDeserializeWithFlags for Fp832<P>[src]

impl<P: Fp832Parameters> CanonicalSerialize for Fp832<P>[src]

impl<P: Fp832Parameters> CanonicalSerializeWithFlags for Fp832<P>[src]

impl<P> Clone for Fp832<P>[src]

impl<P> Copy for Fp832<P>[src]

impl<P> Debug for Fp832<P>[src]

impl<P> Default for Fp832<P>[src]

impl<P: Fp832Parameters> Display for Fp832<P>[src]

impl<'a, P: Fp832Parameters> Div<&'a Fp832<P>> for Fp832<P>[src]

type Output = Self

The resulting type after applying the / operator.

impl<'a, P: Fp832Parameters> Div<&'a mut Fp832<P>> for Fp832<P>[src]

type Output = Self

The resulting type after applying the / operator.

impl<P: Fp832Parameters> Div<Fp832<P>> for Fp832<P>[src]

type Output = Self

The resulting type after applying the / operator.

impl<'a, P: Fp832Parameters> DivAssign<&'a Fp832<P>> for Fp832<P>[src]

impl<'a, P: Fp832Parameters> DivAssign<&'a mut Fp832<P>> for Fp832<P>[src]

impl<P: Fp832Parameters> DivAssign<Fp832<P>> for Fp832<P>[src]

impl<P> Eq for Fp832<P>[src]

impl<P: Fp832Parameters> FftField for Fp832<P>[src]

type FftParams = P

impl<P: Fp832Parameters> Field for Fp832<P>[src]

type BasePrimeField = Self

impl<P: Fp832Parameters> From<BigInteger832> for Fp832<P>[src]

fn from(int: BigInteger832) -> Self[src]

Converts Self::BigInteger into Self

Panics

This method panics if int is larger than P::MODULUS.

impl<P: Fp832Parameters> From<bool> for Fp832<P>[src]

impl<P: Fp832Parameters> From<u128> for Fp832<P>[src]

impl<P: Fp832Parameters> From<u16> for Fp832<P>[src]

impl<P: Fp832Parameters> From<u32> for Fp832<P>[src]

impl<P: Fp832Parameters> From<u64> for Fp832<P>[src]

impl<P: Fp832Parameters> From<u8> for Fp832<P>[src]

impl<P: Fp832Parameters> FromBytes for Fp832<P>[src]

impl<P: Fp832Parameters> FromStr for Fp832<P>[src]

type Err = ()

The associated error which can be returned from parsing.

fn from_str(s: &str) -> Result<Self, Self::Err>[src]

Interpret a string of numbers as a (congruent) prime field element. Does not accept unnecessary leading zeroes or a blank string.

impl<P> Hash for Fp832<P>[src]

impl<P: Fp832Parameters> Into<BigInteger832> for Fp832<P>[src]

impl<'a, P: Fp832Parameters> Mul<&'a Fp832<P>> for Fp832<P>[src]

type Output = Self

The resulting type after applying the * operator.

impl<'a, P: Fp832Parameters> Mul<&'a mut Fp832<P>> for Fp832<P>[src]

type Output = Self

The resulting type after applying the * operator.

impl<P: Fp832Parameters> Mul<Fp832<P>> for Fp832<P>[src]

type Output = Self

The resulting type after applying the * operator.

impl<'a, P: Fp832Parameters> MulAssign<&'a Fp832<P>> for Fp832<P>[src]

impl<'a, P: Fp832Parameters> MulAssign<&'a mut Fp832<P>> for Fp832<P>[src]

impl<P: Fp832Parameters> MulAssign<Fp832<P>> for Fp832<P>[src]

impl<P: Fp832Parameters> Neg for Fp832<P>[src]

type Output = Self

The resulting type after applying the - operator.

impl<P: Fp832Parameters> One for Fp832<P>[src]

impl<P: Fp832Parameters> Ord for Fp832<P>[src]

impl<P> PartialEq<Fp832<P>> for Fp832<P>[src]

impl<P: Fp832Parameters> PartialOrd<Fp832<P>> for Fp832<P>[src]

impl<P: Fp832Parameters> PrimeField for Fp832<P>[src]

type Params = P

type BigInt = BigInteger832

impl<'a, P: Fp832Parameters> Product<&'a Fp832<P>> for Fp832<P>[src]

impl<P: Fp832Parameters> Product<Fp832<P>> for Fp832<P>[src]

impl<P: Fp832Parameters> SquareRootField for Fp832<P>[src]

impl<'a, P: Fp832Parameters> Sub<&'a Fp832<P>> for Fp832<P>[src]

type Output = Self

The resulting type after applying the - operator.

impl<'a, P: Fp832Parameters> Sub<&'a mut Fp832<P>> for Fp832<P>[src]

type Output = Self

The resulting type after applying the - operator.

impl<P: Fp832Parameters> Sub<Fp832<P>> for Fp832<P>[src]

type Output = Self

The resulting type after applying the - operator.

impl<'a, P: Fp832Parameters> SubAssign<&'a Fp832<P>> for Fp832<P>[src]

impl<'a, P: Fp832Parameters> SubAssign<&'a mut Fp832<P>> for Fp832<P>[src]

impl<P: Fp832Parameters> SubAssign<Fp832<P>> for Fp832<P>[src]

impl<'a, P: Fp832Parameters> Sum<&'a Fp832<P>> for Fp832<P>[src]

impl<P: Fp832Parameters> Sum<Fp832<P>> for Fp832<P>[src]

impl<P: Fp832Parameters> ToBytes for Fp832<P>[src]

impl<P: Fp832Parameters> Zero for Fp832<P>[src]

impl<P: Fp832Parameters> Zeroize for Fp832<P>[src]

Auto Trait Implementations

impl<P> Send for Fp832<P> where
    P: Send

impl<P> Sync for Fp832<P> where
    P: Sync

impl<P> Unpin for Fp832<P> where
    P: Unpin

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> UniformRand for T where
    Standard: Distribution<T>, 
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,