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

pub struct Fp64<P>(pub BigInteger64, _);

Implementations

impl<P> Fp64<P>[src]

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

Trait Implementations

impl<'a, P: Fp64Parameters> Add<&'a Fp64<P>> for Fp64<P>[src]

type Output = Self

The resulting type after applying the + operator.

impl<'a, P: Fp64Parameters> Add<&'a mut Fp64<P>> for Fp64<P>[src]

type Output = Self

The resulting type after applying the + operator.

impl<P: Fp64Parameters> Add<Fp64<P>> for Fp64<P>[src]

type Output = Self

The resulting type after applying the + operator.

impl<'a, P: Fp64Parameters> AddAssign<&'a Fp64<P>> for Fp64<P>[src]

impl<'a, P: Fp64Parameters> AddAssign<&'a mut Fp64<P>> for Fp64<P>[src]

impl<P: Fp64Parameters> AddAssign<Fp64<P>> for Fp64<P>[src]

impl<P: Fp64Parameters> CanonicalDeserialize for Fp64<P>[src]

impl<P: Fp64Parameters> CanonicalDeserializeWithFlags for Fp64<P>[src]

impl<P: Fp64Parameters> CanonicalSerialize for Fp64<P>[src]

impl<P: Fp64Parameters> CanonicalSerializeWithFlags for Fp64<P>[src]

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

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

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

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

impl<P: Fp64Parameters> Display for Fp64<P>[src]

impl<'a, P: Fp64Parameters> Div<&'a Fp64<P>> for Fp64<P>[src]

type Output = Self

The resulting type after applying the / operator.

impl<'a, P: Fp64Parameters> Div<&'a mut Fp64<P>> for Fp64<P>[src]

type Output = Self

The resulting type after applying the / operator.

impl<P: Fp64Parameters> Div<Fp64<P>> for Fp64<P>[src]

type Output = Self

The resulting type after applying the / operator.

impl<'a, P: Fp64Parameters> DivAssign<&'a Fp64<P>> for Fp64<P>[src]

impl<'a, P: Fp64Parameters> DivAssign<&'a mut Fp64<P>> for Fp64<P>[src]

impl<P: Fp64Parameters> DivAssign<Fp64<P>> for Fp64<P>[src]

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

impl<P: Fp64Parameters> FftField for Fp64<P>[src]

type FftParams = P

impl<P: Fp64Parameters> Field for Fp64<P>[src]

type BasePrimeField = Self

impl<P: Fp64Parameters> From<BigInteger64> for Fp64<P>[src]

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

Converts Self::BigInteger into Self

Panics

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

impl<P: Fp64Parameters> From<bool> for Fp64<P>[src]

impl<P: Fp64Parameters> From<u128> for Fp64<P>[src]

impl<P: Fp64Parameters> From<u16> for Fp64<P>[src]

impl<P: Fp64Parameters> From<u32> for Fp64<P>[src]

impl<P: Fp64Parameters> From<u64> for Fp64<P>[src]

impl<P: Fp64Parameters> From<u8> for Fp64<P>[src]

impl<P: Fp64Parameters> FromBytes for Fp64<P>[src]

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

impl<P: Fp64Parameters> Into<BigInteger64> for Fp64<P>[src]

impl<'a, P: Fp64Parameters> Mul<&'a Fp64<P>> for Fp64<P>[src]

type Output = Self

The resulting type after applying the * operator.

impl<'a, P: Fp64Parameters> Mul<&'a mut Fp64<P>> for Fp64<P>[src]

type Output = Self

The resulting type after applying the * operator.

impl<P: Fp64Parameters> Mul<Fp64<P>> for Fp64<P>[src]

type Output = Self

The resulting type after applying the * operator.

impl<'a, P: Fp64Parameters> MulAssign<&'a Fp64<P>> for Fp64<P>[src]

impl<'a, P: Fp64Parameters> MulAssign<&'a mut Fp64<P>> for Fp64<P>[src]

impl<P: Fp64Parameters> MulAssign<Fp64<P>> for Fp64<P>[src]

impl<P: Fp64Parameters> Neg for Fp64<P>[src]

type Output = Self

The resulting type after applying the - operator.

impl<P: Fp64Parameters> One for Fp64<P>[src]

impl<P: Fp64Parameters> Ord for Fp64<P>[src]

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

impl<P: Fp64Parameters> PartialOrd<Fp64<P>> for Fp64<P>[src]

impl<P: Fp64Parameters> PrimeField for Fp64<P>[src]

type Params = P

type BigInt = BigInteger64

impl<'a, P: Fp64Parameters> Product<&'a Fp64<P>> for Fp64<P>[src]

impl<P: Fp64Parameters> Product<Fp64<P>> for Fp64<P>[src]

impl<P: Fp64Parameters> SquareRootField for Fp64<P>[src]

impl<'a, P: Fp64Parameters> Sub<&'a Fp64<P>> for Fp64<P>[src]

type Output = Self

The resulting type after applying the - operator.

impl<'a, P: Fp64Parameters> Sub<&'a mut Fp64<P>> for Fp64<P>[src]

type Output = Self

The resulting type after applying the - operator.

impl<P: Fp64Parameters> Sub<Fp64<P>> for Fp64<P>[src]

type Output = Self

The resulting type after applying the - operator.

impl<'a, P: Fp64Parameters> SubAssign<&'a Fp64<P>> for Fp64<P>[src]

impl<'a, P: Fp64Parameters> SubAssign<&'a mut Fp64<P>> for Fp64<P>[src]

impl<P: Fp64Parameters> SubAssign<Fp64<P>> for Fp64<P>[src]

impl<'a, P: Fp64Parameters> Sum<&'a Fp64<P>> for Fp64<P>[src]

impl<P: Fp64Parameters> Sum<Fp64<P>> for Fp64<P>[src]

impl<P: Fp64Parameters> ToBytes for Fp64<P>[src]

impl<P: Fp64Parameters> Zero for Fp64<P>[src]

impl<P: Fp64Parameters> Zeroize for Fp64<P>[src]

Auto Trait Implementations

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

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

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