Struct snarkvm_fields::Fp384[][src]

pub struct Fp384<P: Fp384Parameters>(pub BigInteger, _);

Implementations

impl<P: Fp384Parameters> Fp384<P>[src]

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

pub fn is_valid(&self) -> bool[src]

Trait Implementations

impl<'a, P: Fp384Parameters> Add<&'a Fp384<P>> for Fp384<P>[src]

type Output = Self

The resulting type after applying the + operator.

fn add(self, other: &Self) -> Self[src]

Performs the + operation. Read more

impl<'a, P: Fp384Parameters> AddAssign<&'a Fp384<P>> for Fp384<P>[src]

fn add_assign(&mut self, other: &Self)[src]

Performs the += operation. Read more

impl<P: Fp384Parameters> CanonicalDeserialize for Fp384<P>[src]

fn deserialize<R: Read>(reader: &mut R) -> Result<Self, SerializationError>[src]

Reads Self from reader.

fn deserialize_uncompressed<R>(
    reader: &mut R
) -> Result<Self, SerializationError> where
    R: Read
[src]

Reads Self from reader without compression.

impl<P: Fp384Parameters> CanonicalDeserializeWithFlags for Fp384<P>[src]

fn deserialize_with_flags<R: Read, F: Flags>(
    reader: &mut R
) -> Result<(Self, F), SerializationError>
[src]

Reads Self and Flags from reader. Returns empty flags by default. Read more

impl<P: Fp384Parameters> CanonicalSerialize for Fp384<P>[src]

fn serialize<W: Write>(&self, writer: &mut W) -> Result<(), SerializationError>[src]

Serializes self into writer.

fn serialized_size(&self) -> usize[src]

fn serialize_uncompressed<W>(
    &self,
    writer: &mut W
) -> Result<(), SerializationError> where
    W: Write
[src]

Serializes self into writer without compression.

fn uncompressed_size(&self) -> usize[src]

impl<P: Fp384Parameters> CanonicalSerializeWithFlags for Fp384<P>[src]

fn serialize_with_flags<W: Write, F: Flags>(
    &self,
    writer: &mut W,
    flags: F
) -> Result<(), SerializationError>
[src]

Serializes self and flags into writer.

impl<P: Fp384Parameters> Clone for Fp384<P> where
    P: Fp384Parameters
[src]

fn clone(&self) -> Self[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<P: Fp384Parameters> ConstantSerializedSize for Fp384<P>[src]

impl<P: Fp384Parameters> Debug for Fp384<P>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> FmtResult[src]

Formats the value using the given formatter. Read more

impl<P: Fp384Parameters> Default for Fp384<P> where
    P: Fp384Parameters
[src]

fn default() -> Self[src]

Returns the “default value” for a type. Read more

impl<'de, P: Fp384Parameters> Deserialize<'de> for Fp384<P>[src]

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
    D: Deserializer<'de>, 
[src]

Deserialize this value from the given Serde deserializer. Read more

impl<P: Fp384Parameters> Display for Fp384<P>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> FmtResult[src]

Formats the value using the given formatter. Read more

impl<'a, P: Fp384Parameters> Div<&'a Fp384<P>> for Fp384<P>[src]

type Output = Self

The resulting type after applying the / operator.

fn div(self, other: &Self) -> Self[src]

Performs the / operation. Read more

impl<'a, P: Fp384Parameters> DivAssign<&'a Fp384<P>> for Fp384<P>[src]

fn div_assign(&mut self, other: &Self)[src]

Performs the /= operation. Read more

impl<P: Fp384Parameters> Field for Fp384<P>[src]

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

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. Read more

fn double(&self) -> Self[src]

Returns self + self.

fn double_in_place(&mut self) -> &mut Self[src]

Doubles self in place.

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

Returns the characteristic of the field.

fn square(&self) -> Self[src]

Returns self * self.

fn square_in_place(&mut self) -> &mut Self[src]

Squares self in place.

fn inverse(&self) -> Option<Self>[src]

Computes the multiplicative inverse of self if self is nonzero.

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

fn frobenius_map(&mut self, _: usize)[src]

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

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

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

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

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. Read more

impl<P: Fp384Parameters> From<u128> for Fp384<P>[src]

fn from(other: u128) -> Self[src]

Attempts to convert an integer into a field element. Panics if the provided integer is invalid (e.g. larger than the field modulus).

impl<P: Fp384Parameters> From<u16> for Fp384<P>[src]

fn from(other: u16) -> Self[src]

Attempts to convert an integer into a field element. Panics if the provided integer is invalid (e.g. larger than the field modulus).

impl<P: Fp384Parameters> From<u32> for Fp384<P>[src]

fn from(other: u32) -> Self[src]

Attempts to convert an integer into a field element. Panics if the provided integer is invalid (e.g. larger than the field modulus).

impl<P: Fp384Parameters> From<u64> for Fp384<P>[src]

fn from(other: u64) -> Self[src]

Attempts to convert an integer into a field element. Panics if the provided integer is invalid (e.g. larger than the field modulus).

impl<P: Fp384Parameters> From<u8> for Fp384<P>[src]

fn from(other: u8) -> Self[src]

Attempts to convert an integer into a field element. Panics if the provided integer is invalid (e.g. larger than the field modulus).

impl<P: Fp384Parameters> FromBytes for Fp384<P>[src]

fn read<R: Read>(reader: R) -> IoResult<Self>[src]

Reads Self from reader.

impl<P: Fp384Parameters> FromStr for Fp384<P>[src]

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.

type Err = FieldError

The associated error which can be returned from parsing.

impl<P: Fp384Parameters> Hash for Fp384<P> where
    P: Fp384Parameters
[src]

fn hash<__HP>(&self, __state: &mut __HP) where
    __HP: Hasher
[src]

Feeds this value into the given Hasher. Read more

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given Hasher. Read more

impl<P: Fp384Parameters> Into<BigInteger384> for Fp384<P>[src]

fn into(self) -> BigInteger384[src]

Performs the conversion.

impl<'a, P: Fp384Parameters> Mul<&'a Fp384<P>> for Fp384<P>[src]

type Output = Self

The resulting type after applying the * operator.

fn mul(self, other: &Self) -> Self[src]

Performs the * operation. Read more

impl<'a, P: Fp384Parameters> MulAssign<&'a Fp384<P>> for Fp384<P>[src]

fn mul_assign(&mut self, other: &Self)[src]

Performs the *= operation. Read more

impl<P: Fp384Parameters> Neg for Fp384<P>[src]

type Output = Self

The resulting type after applying the - operator.

#[must_use]
fn neg(self) -> Self
[src]

Performs the unary - operation. Read more

impl<P: Fp384Parameters> One for Fp384<P>[src]

fn one() -> Self[src]

fn is_one(&self) -> bool[src]

impl<P: Fp384Parameters> Ord for Fp384<P>[src]

fn cmp(&self, other: &Self) -> Ordering[src]

This method returns an Ordering between self and other. Read more

#[must_use]
fn max(self, other: Self) -> Self
1.21.0[src]

Compares and returns the maximum of two values. Read more

#[must_use]
fn min(self, other: Self) -> Self
1.21.0[src]

Compares and returns the minimum of two values. Read more

#[must_use]
fn clamp(self, min: Self, max: Self) -> Self
1.50.0[src]

Restrict a value to a certain interval. Read more

impl<P: Fp384Parameters> PartialEq<Fp384<P>> for Fp384<P> where
    P: Fp384Parameters
[src]

fn eq(&self, other: &Self) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl<P: Fp384Parameters> PartialOrd<Fp384<P>> for Fp384<P>[src]

fn partial_cmp(&self, other: &Self) -> Option<Ordering>[src]

This method returns an ordering between self and other values if one exists. Read more

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl<P: Fp384Parameters> PrimeField for Fp384<P>[src]

type BigInteger = BigInteger

type Parameters = P

fn from_repr(r: BigInteger) -> Option<Self>[src]

Returns a prime field element from its underlying representation.

fn into_repr(&self) -> BigInteger[src]

Returns the underlying representation of the prime field element.

fn from_repr_raw(r: BigInteger) -> Self[src]

Returns a prime field element from its underlying raw representation.

fn into_repr_raw(&self) -> BigInteger[src]

Returns the underlying raw representation of the prime field element.

fn multiplicative_generator() -> Self[src]

Returns the multiplicative generator of char() - 1 order.

fn root_of_unity() -> Self[src]

Returns the 2^s root of unity.

fn qnr_to_t() -> Self[src]

Return the a QNR^T

fn size_in_bits() -> usize[src]

Returns the field size in bits.

fn trace() -> Self::BigInteger[src]

Returns the trace.

fn trace_minus_one_div_two() -> Self::BigInteger[src]

Returns the trace minus one divided by two.

fn modulus_minus_one_div_two() -> Self::BigInteger[src]

Returns the modulus minus one divided by two.

impl<P: Fp384Parameters> Serialize for Fp384<P>[src]

fn serialize<S>(&self, s: S) -> Result<S::Ok, S::Error> where
    S: Serializer
[src]

Serialize this value into the given Serde serializer. Read more

impl<P: Fp384Parameters> SquareRootField for Fp384<P>[src]

fn legendre(&self) -> LegendreSymbol[src]

Returns the Legendre symbol.

fn sqrt(&self) -> Option<Self>[src]

Returns the square root of self, if it exists.

fn sqrt_in_place(&mut self) -> Option<&mut Self>[src]

Sets self to be the square root of self, if it exists.

impl<'a, P: Fp384Parameters> Sub<&'a Fp384<P>> for Fp384<P>[src]

type Output = Self

The resulting type after applying the - operator.

fn sub(self, other: &Self) -> Self[src]

Performs the - operation. Read more

impl<'a, P: Fp384Parameters> SubAssign<&'a Fp384<P>> for Fp384<P>[src]

fn sub_assign(&mut self, other: &Self)[src]

Performs the -= operation. Read more

impl<P: Fp384Parameters> ToBytes for Fp384<P>[src]

fn write<W: Write>(&self, writer: W) -> IoResult<()>[src]

Serializes self into writer.

impl<P: Fp384Parameters> Zero for Fp384<P>[src]

fn zero() -> Self[src]

fn is_zero(&self) -> bool[src]

impl<P: Fp384Parameters> Copy for Fp384<P> where
    P: Fp384Parameters
[src]

impl<P: Fp384Parameters> Eq for Fp384<P> where
    P: Fp384Parameters
[src]

Auto Trait Implementations

impl<P> RefUnwindSafe for Fp384<P> where
    P: RefUnwindSafe

impl<P> Send for Fp384<P>

impl<P> Sync for Fp384<P>

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

impl<P> UnwindSafe for Fp384<P> where
    P: UnwindSafe

Blanket Implementations

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

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

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

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

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

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

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

pub default fn to_string(&self) -> String[src]

Converts the given value to a String. Read more

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.

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

pub fn rand<R>(rng: &mut R) -> T where
    R: Rng + ?Sized
[src]

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

pub fn vzip(self) -> V

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]