pub struct Fp2<P: Fp2Parameters> {
pub c0: P::Fp,
pub c1: P::Fp,
}
Fields§
§c0: P::Fp
§c1: P::Fp
Implementations§
Source§impl<P: Fp2Parameters> Fp2<P>
impl<P: Fp2Parameters> Fp2<P>
Trait Implementations§
Source§impl<P: Fp2Parameters> Add for Fp2<P>
impl<P: Fp2Parameters> Add for Fp2<P>
Source§impl<P: Fp2Parameters> AddAssign<&&Fp2<P>> for Fp2<P>
impl<P: Fp2Parameters> AddAssign<&&Fp2<P>> for Fp2<P>
Source§fn add_assign(&mut self, other: &&Self)
fn add_assign(&mut self, other: &&Self)
Performs the
+=
operation. Read moreSource§impl<'a, P: Fp2Parameters> AddAssign<&'a Fp2<P>> for Fp2<P>
impl<'a, P: Fp2Parameters> AddAssign<&'a Fp2<P>> for Fp2<P>
Source§fn add_assign(&mut self, other: &Self)
fn add_assign(&mut self, other: &Self)
Performs the
+=
operation. Read moreSource§impl<'a, P: Fp2Parameters> AddAssign<&'a mut Fp2<P>> for Fp2<P>
impl<'a, P: Fp2Parameters> AddAssign<&'a mut Fp2<P>> for Fp2<P>
Source§fn add_assign(&mut self, other: &'a mut Self)
fn add_assign(&mut self, other: &'a mut Self)
Performs the
+=
operation. Read moreSource§impl<P: Fp2Parameters> AddAssign for Fp2<P>
impl<P: Fp2Parameters> AddAssign for Fp2<P>
Source§fn add_assign(&mut self, other: Self)
fn add_assign(&mut self, other: Self)
Performs the
+=
operation. Read moreSource§impl<P: Fp2Parameters> CanonicalDeserialize for Fp2<P>
impl<P: Fp2Parameters> CanonicalDeserialize for Fp2<P>
fn deserialize_with_mode<R: Read>( reader: R, compress: Compress, validate: Validate, ) -> Result<Self, SerializationError>
fn deserialize_compressed<R>(reader: R) -> Result<Self, SerializationError>where
R: Read,
fn deserialize_compressed_unchecked<R>(
reader: R,
) -> Result<Self, SerializationError>where
R: Read,
fn deserialize_uncompressed<R>(reader: R) -> Result<Self, SerializationError>where
R: Read,
fn deserialize_uncompressed_unchecked<R>(
reader: R,
) -> Result<Self, SerializationError>where
R: Read,
Source§impl<P: Fp2Parameters> CanonicalDeserializeWithFlags for Fp2<P>
impl<P: Fp2Parameters> CanonicalDeserializeWithFlags for Fp2<P>
Source§fn deserialize_with_flags<R: Read, F: Flags>(
reader: R,
) -> Result<(Self, F), SerializationError>
fn deserialize_with_flags<R: Read, F: Flags>( reader: R, ) -> Result<(Self, F), SerializationError>
Reads
Self
and Flags
from reader
.
Returns empty flags by default.Source§impl<P: Fp2Parameters> CanonicalSerialize for Fp2<P>
impl<P: Fp2Parameters> CanonicalSerialize for Fp2<P>
fn serialize_with_mode<W: Write>( &self, writer: W, _compress: Compress, ) -> Result<(), SerializationError>
fn serialized_size(&self, compress: Compress) -> usize
fn serialize_compressed<W>(&self, writer: W) -> Result<(), SerializationError>where
W: Write,
fn compressed_size(&self) -> usize
fn serialize_uncompressed<W>(&self, writer: W) -> Result<(), SerializationError>where
W: Write,
fn uncompressed_size(&self) -> usize
Source§impl<P: Fp2Parameters> CanonicalSerializeWithFlags for Fp2<P>
impl<P: Fp2Parameters> CanonicalSerializeWithFlags for Fp2<P>
Source§fn serialize_with_flags<W: Write, F: Flags>(
&self,
writer: W,
flags: F,
) -> Result<(), SerializationError>
fn serialize_with_flags<W: Write, F: Flags>( &self, writer: W, flags: F, ) -> Result<(), SerializationError>
Serializes
self
and flags
into writer
.Source§fn serialized_size_with_flags<F: Flags>(&self) -> usize
fn serialized_size_with_flags<F: Flags>(&self) -> usize
Serializes
self
and flags
into writer
.Source§impl<'de, P: Fp2Parameters> Deserialize<'de> for Fp2<P>where
P::Fp: Deserialize<'de>,
impl<'de, P: Fp2Parameters> Deserialize<'de> for Fp2<P>where
P::Fp: Deserialize<'de>,
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<P: Fp2Parameters> Display for Fp2<P>
impl<P: Fp2Parameters> Display for Fp2<P>
Source§impl<P: Fp2Parameters> Distribution<Fp2<P>> for Standard
impl<P: Fp2Parameters> Distribution<Fp2<P>> for Standard
Source§impl<P: Fp2Parameters> Div for Fp2<P>
impl<P: Fp2Parameters> Div for Fp2<P>
Source§impl<P: Fp2Parameters> DivAssign<&&Fp2<P>> for Fp2<P>
impl<P: Fp2Parameters> DivAssign<&&Fp2<P>> for Fp2<P>
Source§fn div_assign(&mut self, other: &&Self)
fn div_assign(&mut self, other: &&Self)
Performs the
/=
operation. Read moreSource§impl<'a, P: Fp2Parameters> DivAssign<&'a Fp2<P>> for Fp2<P>
impl<'a, P: Fp2Parameters> DivAssign<&'a Fp2<P>> for Fp2<P>
Source§fn div_assign(&mut self, other: &Self)
fn div_assign(&mut self, other: &Self)
Performs the
/=
operation. Read moreSource§impl<'a, P: Fp2Parameters> DivAssign<&'a mut Fp2<P>> for Fp2<P>
impl<'a, P: Fp2Parameters> DivAssign<&'a mut Fp2<P>> for Fp2<P>
Source§fn div_assign(&mut self, other: &'a mut Self)
fn div_assign(&mut self, other: &'a mut Self)
Performs the
/=
operation. Read moreSource§impl<P: Fp2Parameters> DivAssign for Fp2<P>
impl<P: Fp2Parameters> DivAssign for Fp2<P>
Source§fn div_assign(&mut self, other: Self)
fn div_assign(&mut self, other: Self)
Performs the
/=
operation. Read moreSource§impl<P: Fp2Parameters> Field for Fp2<P>
impl<P: Fp2Parameters> Field for Fp2<P>
type BasePrimeField = <P as Fp2Parameters>::Fp
Source§fn from_base_prime_field(other: Self::BasePrimeField) -> Self
fn from_base_prime_field(other: Self::BasePrimeField) -> Self
Constructs an element of
Self
from an element of the base
prime field.Source§fn characteristic<'a>() -> &'a [u64]
fn characteristic<'a>() -> &'a [u64]
Returns the characteristic of the field.
Source§fn double_in_place(&mut self)
fn double_in_place(&mut self)
Doubles
self
in place.Source§fn from_random_bytes_with_flags<F: Flags>(bytes: &[u8]) -> Option<(Self, F)>
fn from_random_bytes_with_flags<F: Flags>(bytes: &[u8]) -> Option<(Self, F)>
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.
Source§fn from_random_bytes(bytes: &[u8]) -> Option<Self>
fn from_random_bytes(bytes: &[u8]) -> Option<Self>
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.
Source§fn square_in_place(&mut self) -> &mut Self
fn square_in_place(&mut self) -> &mut Self
Squares
self
in place.Source§fn inverse(&self) -> Option<Self>
fn inverse(&self) -> Option<Self>
Computes the multiplicative inverse of
self
if self
is nonzero.Source§fn inverse_in_place(&mut self) -> Option<&mut Self>
fn inverse_in_place(&mut self) -> Option<&mut Self>
Sets
self
to self
’s inverse if it exists. Otherwise it is a no-op.Source§fn frobenius_map(&mut self, power: usize)
fn frobenius_map(&mut self, power: usize)
Exponentiates this element by a power of the base prime modulus via
the Frobenius automorphism.
fn sum_of_products<'a>( a: impl Iterator<Item = &'a Self> + Clone, b: impl Iterator<Item = &'a Self> + Clone, ) -> Self
Source§impl<P: Fp2Parameters> FromBytes for Fp2<P>
impl<P: Fp2Parameters> FromBytes for Fp2<P>
Source§impl<P: Fp2Parameters> Mul for Fp2<P>
impl<P: Fp2Parameters> Mul for Fp2<P>
Source§impl<P: Fp2Parameters> MulAssign<&&Fp2<P>> for Fp2<P>
impl<P: Fp2Parameters> MulAssign<&&Fp2<P>> for Fp2<P>
Source§fn mul_assign(&mut self, other: &&Self)
fn mul_assign(&mut self, other: &&Self)
Performs the
*=
operation. Read moreSource§impl<'a, P: Fp2Parameters> MulAssign<&'a Fp2<P>> for Fp2<P>
impl<'a, P: Fp2Parameters> MulAssign<&'a Fp2<P>> for Fp2<P>
Source§fn mul_assign(&mut self, other: &Self)
fn mul_assign(&mut self, other: &Self)
Performs the
*=
operation. Read moreSource§impl<'a, P: Fp2Parameters> MulAssign<&'a mut Fp2<P>> for Fp2<P>
impl<'a, P: Fp2Parameters> MulAssign<&'a mut Fp2<P>> for Fp2<P>
Source§fn mul_assign(&mut self, other: &'a mut Self)
fn mul_assign(&mut self, other: &'a mut Self)
Performs the
*=
operation. Read moreSource§impl<P: Fp2Parameters> MulAssign for Fp2<P>
impl<P: Fp2Parameters> MulAssign for Fp2<P>
Source§fn mul_assign(&mut self, other: Self)
fn mul_assign(&mut self, other: Self)
Performs the
*=
operation. Read moreSource§impl<P: Fp2Parameters> Neg for Fp2<P>
impl<P: Fp2Parameters> Neg for Fp2<P>
Source§impl<P: Fp2Parameters> One for Fp2<P>
impl<P: Fp2Parameters> One for Fp2<P>
Source§impl<P: Fp2Parameters> Ord for Fp2<P>
impl<P: Fp2Parameters> Ord for Fp2<P>
Fp2
elements are ordered lexicographically.
Source§impl<P: Fp2Parameters> PartialOrd for Fp2<P>
impl<P: Fp2Parameters> PartialOrd for Fp2<P>
Source§impl<P: Fp2Parameters> Product for Fp2<P>
impl<P: Fp2Parameters> Product for Fp2<P>
Source§impl<P: Fp2Parameters> Serialize for Fp2<P>
impl<P: Fp2Parameters> Serialize for Fp2<P>
Source§impl<P: Fp2Parameters> SquareRootField for Fp2<P>where
P::Fp: SquareRootField,
impl<P: Fp2Parameters> SquareRootField for Fp2<P>where
P::Fp: SquareRootField,
Source§impl<P: Fp2Parameters> Sub for Fp2<P>
impl<P: Fp2Parameters> Sub for Fp2<P>
Source§impl<P: Fp2Parameters> SubAssign<&&Fp2<P>> for Fp2<P>
impl<P: Fp2Parameters> SubAssign<&&Fp2<P>> for Fp2<P>
Source§fn sub_assign(&mut self, other: &&Self)
fn sub_assign(&mut self, other: &&Self)
Performs the
-=
operation. Read moreSource§impl<'a, P: Fp2Parameters> SubAssign<&'a Fp2<P>> for Fp2<P>
impl<'a, P: Fp2Parameters> SubAssign<&'a Fp2<P>> for Fp2<P>
Source§fn sub_assign(&mut self, other: &Self)
fn sub_assign(&mut self, other: &Self)
Performs the
-=
operation. Read moreSource§impl<'a, P: Fp2Parameters> SubAssign<&'a mut Fp2<P>> for Fp2<P>
impl<'a, P: Fp2Parameters> SubAssign<&'a mut Fp2<P>> for Fp2<P>
Source§fn sub_assign(&mut self, other: &'a mut Self)
fn sub_assign(&mut self, other: &'a mut Self)
Performs the
-=
operation. Read moreSource§impl<P: Fp2Parameters> SubAssign for Fp2<P>
impl<P: Fp2Parameters> SubAssign for Fp2<P>
Source§fn sub_assign(&mut self, other: Self)
fn sub_assign(&mut self, other: Self)
Performs the
-=
operation. Read moreSource§impl<P: Fp2Parameters> Sum for Fp2<P>
impl<P: Fp2Parameters> Sum for Fp2<P>
Source§impl<P: Fp2Parameters> ToBits for Fp2<P>
impl<P: Fp2Parameters> ToBits for Fp2<P>
Source§fn write_bits_le(&self, vec: &mut Vec<bool>)
fn write_bits_le(&self, vec: &mut Vec<bool>)
Writes
self
into the given vector as a boolean array in little-endian order.Source§fn write_bits_be(&self, vec: &mut Vec<bool>)
fn write_bits_be(&self, vec: &mut Vec<bool>)
Writes
self
into the given vector as a boolean array in big-endian order.Source§fn to_bits_le(&self) -> Vec<bool>
fn to_bits_le(&self) -> Vec<bool>
Returns
self
as a boolean array in little-endian order.Source§fn to_bits_be(&self) -> Vec<bool>
fn to_bits_be(&self) -> Vec<bool>
Returns
self
as a boolean array in big-endian order.Source§impl<P: Fp2Parameters> ToBytes for Fp2<P>
impl<P: Fp2Parameters> ToBytes for Fp2<P>
Source§impl<P: Fp2Parameters> ToConstraintField<<P as Fp2Parameters>::Fp> for Fp2<P>
impl<P: Fp2Parameters> ToConstraintField<<P as Fp2Parameters>::Fp> for Fp2<P>
fn to_field_elements(&self) -> Result<Vec<P::Fp>, ConstraintFieldError>
Source§impl<P: Fp2Parameters> Valid for Fp2<P>
impl<P: Fp2Parameters> Valid for Fp2<P>
fn check(&self) -> Result<(), SerializationError>
fn batch_check<'a>(
_batch: impl Iterator<Item = &'a Self> + Send,
) -> Result<(), SerializationError>where
Self: 'a,
Source§impl<P: Fp2Parameters> Zero for Fp2<P>
impl<P: Fp2Parameters> Zero for Fp2<P>
impl<P: Copy + Fp2Parameters> Copy for Fp2<P>
impl<P: Eq + Fp2Parameters> Eq for Fp2<P>
impl<P: Fp2Parameters> StructuralPartialEq for Fp2<P>
Auto Trait Implementations§
impl<P> Freeze for Fp2<P>
impl<P> RefUnwindSafe for Fp2<P>
impl<P> Send for Fp2<P>
impl<P> Sync for Fp2<P>
impl<P> Unpin for Fp2<P>
impl<P> UnwindSafe for Fp2<P>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<'de, T> DeserializeExt<'de> for Twhere
T: DeserializeOwned,
impl<'de, T> DeserializeExt<'de> for Twhere
T: DeserializeOwned,
fn take_from_value<D>(
value: &mut Value,
field: &str,
) -> Result<T, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more