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

pub struct Fp320<P>(pub BigInteger320, _);

Implementations

impl<P> Fp320<P>[src]

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

Trait Implementations

impl<'a, P: Fp320Parameters> Add<&'a Fp320<P>> for Fp320<P>[src]

type Output = Self

The resulting type after applying the + operator.

impl<'a, P: Fp320Parameters> Add<&'a mut Fp320<P>> for Fp320<P>[src]

type Output = Self

The resulting type after applying the + operator.

impl<P: Fp320Parameters> Add<Fp320<P>> for Fp320<P>[src]

type Output = Self

The resulting type after applying the + operator.

impl<'a, P: Fp320Parameters> AddAssign<&'a Fp320<P>> for Fp320<P>[src]

impl<'a, P: Fp320Parameters> AddAssign<&'a mut Fp320<P>> for Fp320<P>[src]

impl<P: Fp320Parameters> AddAssign<Fp320<P>> for Fp320<P>[src]

impl<P: Fp320Parameters> CanonicalDeserialize for Fp320<P>[src]

impl<P: Fp320Parameters> CanonicalDeserializeWithFlags for Fp320<P>[src]

impl<P: Fp320Parameters> CanonicalSerialize for Fp320<P>[src]

impl<P: Fp320Parameters> CanonicalSerializeWithFlags for Fp320<P>[src]

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

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

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

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

impl<P: Fp320Parameters> Display for Fp320<P>[src]

impl<'a, P: Fp320Parameters> Div<&'a Fp320<P>> for Fp320<P>[src]

type Output = Self

The resulting type after applying the / operator.

impl<'a, P: Fp320Parameters> Div<&'a mut Fp320<P>> for Fp320<P>[src]

type Output = Self

The resulting type after applying the / operator.

impl<P: Fp320Parameters> Div<Fp320<P>> for Fp320<P>[src]

type Output = Self

The resulting type after applying the / operator.

impl<'a, P: Fp320Parameters> DivAssign<&'a Fp320<P>> for Fp320<P>[src]

impl<'a, P: Fp320Parameters> DivAssign<&'a mut Fp320<P>> for Fp320<P>[src]

impl<P: Fp320Parameters> DivAssign<Fp320<P>> for Fp320<P>[src]

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

impl<P: Fp320Parameters> FftField for Fp320<P>[src]

type FftParams = P

impl<P: Fp320Parameters> Field for Fp320<P>[src]

type BasePrimeField = Self

impl<P: Fp320Parameters> From<BigInteger320> for Fp320<P>[src]

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

Converts Self::BigInteger into Self

Panics

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

impl<P: Fp320Parameters> From<bool> for Fp320<P>[src]

impl<P: Fp320Parameters> From<u128> for Fp320<P>[src]

impl<P: Fp320Parameters> From<u16> for Fp320<P>[src]

impl<P: Fp320Parameters> From<u32> for Fp320<P>[src]

impl<P: Fp320Parameters> From<u64> for Fp320<P>[src]

impl<P: Fp320Parameters> From<u8> for Fp320<P>[src]

impl<P: Fp320Parameters> FromBytes for Fp320<P>[src]

impl<P: Fp320Parameters> FromStr for Fp320<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 Fp320<P>[src]

impl<P: Fp320Parameters> Into<BigInteger320> for Fp320<P>[src]

impl<'a, P: Fp320Parameters> Mul<&'a Fp320<P>> for Fp320<P>[src]

type Output = Self

The resulting type after applying the * operator.

impl<'a, P: Fp320Parameters> Mul<&'a mut Fp320<P>> for Fp320<P>[src]

type Output = Self

The resulting type after applying the * operator.

impl<P: Fp320Parameters> Mul<Fp320<P>> for Fp320<P>[src]

type Output = Self

The resulting type after applying the * operator.

impl<'a, P: Fp320Parameters> MulAssign<&'a Fp320<P>> for Fp320<P>[src]

impl<'a, P: Fp320Parameters> MulAssign<&'a mut Fp320<P>> for Fp320<P>[src]

impl<P: Fp320Parameters> MulAssign<Fp320<P>> for Fp320<P>[src]

impl<P: Fp320Parameters> Neg for Fp320<P>[src]

type Output = Self

The resulting type after applying the - operator.

impl<P: Fp320Parameters> One for Fp320<P>[src]

impl<P: Fp320Parameters> Ord for Fp320<P>[src]

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

impl<P: Fp320Parameters> PartialOrd<Fp320<P>> for Fp320<P>[src]

impl<P: Fp320Parameters> PrimeField for Fp320<P>[src]

type Params = P

type BigInt = BigInteger320

impl<'a, P: Fp320Parameters> Product<&'a Fp320<P>> for Fp320<P>[src]

impl<P: Fp320Parameters> Product<Fp320<P>> for Fp320<P>[src]

impl<P: Fp320Parameters> SquareRootField for Fp320<P>[src]

impl<'a, P: Fp320Parameters> Sub<&'a Fp320<P>> for Fp320<P>[src]

type Output = Self

The resulting type after applying the - operator.

impl<'a, P: Fp320Parameters> Sub<&'a mut Fp320<P>> for Fp320<P>[src]

type Output = Self

The resulting type after applying the - operator.

impl<P: Fp320Parameters> Sub<Fp320<P>> for Fp320<P>[src]

type Output = Self

The resulting type after applying the - operator.

impl<'a, P: Fp320Parameters> SubAssign<&'a Fp320<P>> for Fp320<P>[src]

impl<'a, P: Fp320Parameters> SubAssign<&'a mut Fp320<P>> for Fp320<P>[src]

impl<P: Fp320Parameters> SubAssign<Fp320<P>> for Fp320<P>[src]

impl<'a, P: Fp320Parameters> Sum<&'a Fp320<P>> for Fp320<P>[src]

impl<P: Fp320Parameters> Sum<Fp320<P>> for Fp320<P>[src]

impl<P: Fp320Parameters> ToBytes for Fp320<P>[src]

impl<P: Fp320Parameters> Zero for Fp320<P>[src]

impl<P: Fp320Parameters> Zeroize for Fp320<P>[src]

Auto Trait Implementations

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

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

impl<P> Unpin for Fp320<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>,