pub struct PairingOutput<P: Pairing>(pub P::TargetField);
Expand description

Represents the target group of a pairing. This struct is a wrapper around the field that the target group is embedded in.

Tuple Fields§

§0: P::TargetField

Trait Implementations§

source§

impl<'a, 'b, P: Pairing> Add<&'a PairingOutput<P>> for &'b PairingOutput<P>

§

type Output = PairingOutput<P>

The resulting type after applying the + operator.
source§

fn add(self, other: &'a PairingOutput<P>) -> PairingOutput<P>

Performs the + operation. Read more
source§

impl<'a, P: Pairing> Add<&'a PairingOutput<P>> for PairingOutput<P>

§

type Output = PairingOutput<P>

The resulting type after applying the + operator.
source§

fn add(self, other: &'a Self) -> Self

Performs the + operation. Read more
source§

impl<'a, 'b, P: Pairing> Add<&'a mut PairingOutput<P>> for &'b PairingOutput<P>

§

type Output = PairingOutput<P>

The resulting type after applying the + operator.
source§

fn add(self, other: &'a mut PairingOutput<P>) -> PairingOutput<P>

Performs the + operation. Read more
source§

impl<'a, P: Pairing> Add<&'a mut PairingOutput<P>> for PairingOutput<P>

§

type Output = PairingOutput<P>

The resulting type after applying the + operator.
source§

fn add(self, other: &'a mut Self) -> Self

Performs the + operation. Read more
source§

impl<'b, P: Pairing> Add<PairingOutput<P>> for &'b PairingOutput<P>

§

type Output = PairingOutput<P>

The resulting type after applying the + operator.
source§

fn add(self, other: PairingOutput<P>) -> PairingOutput<P>

Performs the + operation. Read more
source§

impl<P: Pairing> Add<PairingOutput<P>> for PairingOutput<P>

§

type Output = PairingOutput<P>

The resulting type after applying the + operator.
source§

fn add(self, other: Self) -> Self

Performs the + operation. Read more
source§

impl<'a, P: Pairing> AddAssign<&'a PairingOutput<P>> for PairingOutput<P>

source§

fn add_assign(&mut self, other: &'a Self)

Performs the += operation. Read more
source§

impl<'a, P: Pairing> AddAssign<&'a mut PairingOutput<P>> for PairingOutput<P>

source§

fn add_assign(&mut self, other: &'a mut Self)

Performs the += operation. Read more
source§

impl<P: Pairing> AddAssign<PairingOutput<P>> for PairingOutput<P>

source§

fn add_assign(&mut self, other: Self)

Performs the += operation. Read more
source§

impl<P: Pairing> CanonicalDeserialize for PairingOutput<P>

source§

fn deserialize_with_mode<R: Read>( reader: R, compress: Compress, validate: Validate ) -> Result<Self, SerializationError>

The general deserialize method that takes in customization flags.
source§

fn deserialize_compressed<R>(reader: R) -> Result<Self, SerializationError>where R: Read,

source§

fn deserialize_compressed_unchecked<R>( reader: R ) -> Result<Self, SerializationError>where R: Read,

source§

fn deserialize_uncompressed<R>(reader: R) -> Result<Self, SerializationError>where R: Read,

source§

fn deserialize_uncompressed_unchecked<R>( reader: R ) -> Result<Self, SerializationError>where R: Read,

source§

impl<P: Pairing> CanonicalSerialize for PairingOutput<P>

source§

fn serialize_with_mode<W: Write>( &self, writer: W, compress: Compress ) -> Result<(), SerializationError>

The general serialize method that takes in customization flags.
source§

fn serialized_size(&self, compress: Compress) -> usize

source§

fn serialize_compressed<W>(&self, writer: W) -> Result<(), SerializationError>where W: Write,

source§

fn compressed_size(&self) -> usize

source§

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

source§

fn uncompressed_size(&self) -> usize

source§

impl<P> Clone for PairingOutput<P>where P: Pairing,

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<P> Debug for PairingOutput<P>where P: Pairing,

source§

fn fmt(&self, __f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<P> Default for PairingOutput<P>where P: Pairing,

source§

fn default() -> Self

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

impl<P: Pairing> Display for PairingOutput<P>

source§

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

Formats the value using the given formatter. Read more
source§

impl<P: Pairing> Distribution<PairingOutput<P>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> PairingOutput<P>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl<P: Pairing> Group for PairingOutput<P>

§

type ScalarField = <P as Pairing>::ScalarField

The scalar field F_r, where r is the order of this group.
source§

fn generator() -> Self

Returns a fixed generator of this group.
source§

fn double_in_place(&mut self) -> &mut Self

Double self in place.
source§

fn mul_bigint(&self, other: impl AsRef<[u64]>) -> Self

Performs scalar multiplication of this element.
source§

fn mul_bits_be(&self, other: impl Iterator<Item = bool>) -> Self

Computes other * self, where other is a big-endian bit representation of some integer.
source§

fn double(&self) -> Self

Doubles self.
source§

impl<P> Hash for PairingOutput<P>where P: Pairing,

source§

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

Feeds this value into the given Hasher. Read more
1.3.0 · source§

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

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

impl<P: Pairing, T: Borrow<P::ScalarField>> Mul<T> for PairingOutput<P>

§

type Output = PairingOutput<P>

The resulting type after applying the * operator.
source§

fn mul(self, other: T) -> Self

Performs the * operation. Read more
source§

impl<P: Pairing, T: Borrow<P::ScalarField>> MulAssign<T> for PairingOutput<P>

source§

fn mul_assign(&mut self, other: T)

Performs the *= operation. Read more
source§

impl<P: Pairing> Neg for PairingOutput<P>

§

type Output = PairingOutput<P>

The resulting type after applying the - operator.
source§

fn neg(self) -> Self

Performs the unary - operation. Read more
source§

impl<P> Ord for PairingOutput<P>where P: Pairing,

source§

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

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Selfwhere Self: Sized + PartialOrd<Self>,

Restrict a value to a certain interval. Read more
source§

impl<P> PartialEq<PairingOutput<P>> for PairingOutput<P>where P: Pairing,

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<P> PartialOrd<PairingOutput<P>> for PairingOutput<P>where P: Pairing,

source§

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

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

fn lt(&self, other: &Rhs) -> bool

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

fn le(&self, other: &Rhs) -> bool

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

fn gt(&self, other: &Rhs) -> bool

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

fn ge(&self, other: &Rhs) -> bool

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

impl<P: Pairing> ScalarMul for PairingOutput<P>

§

type MulBase = PairingOutput<P>

source§

const NEGATION_IS_CHEAP: bool = <P::TargetField>::INVERSE_IS_FAST

source§

fn batch_convert_to_mul_base(bases: &[Self]) -> Vec<Self::MulBase>

source§

impl<'a, 'b, P: Pairing> Sub<&'a PairingOutput<P>> for &'b PairingOutput<P>

§

type Output = PairingOutput<P>

The resulting type after applying the - operator.
source§

fn sub(self, other: &'a PairingOutput<P>) -> PairingOutput<P>

Performs the - operation. Read more
source§

impl<'a, P: Pairing> Sub<&'a PairingOutput<P>> for PairingOutput<P>

§

type Output = PairingOutput<P>

The resulting type after applying the - operator.
source§

fn sub(self, other: &'a Self) -> Self

Performs the - operation. Read more
source§

impl<'a, 'b, P: Pairing> Sub<&'a mut PairingOutput<P>> for &'b PairingOutput<P>

§

type Output = PairingOutput<P>

The resulting type after applying the - operator.
source§

fn sub(self, other: &'a mut PairingOutput<P>) -> PairingOutput<P>

Performs the - operation. Read more
source§

impl<'a, P: Pairing> Sub<&'a mut PairingOutput<P>> for PairingOutput<P>

§

type Output = PairingOutput<P>

The resulting type after applying the - operator.
source§

fn sub(self, other: &'a mut Self) -> Self

Performs the - operation. Read more
source§

impl<'b, P: Pairing> Sub<PairingOutput<P>> for &'b PairingOutput<P>

§

type Output = PairingOutput<P>

The resulting type after applying the - operator.
source§

fn sub(self, other: PairingOutput<P>) -> PairingOutput<P>

Performs the - operation. Read more
source§

impl<P: Pairing> Sub<PairingOutput<P>> for PairingOutput<P>

§

type Output = PairingOutput<P>

The resulting type after applying the - operator.
source§

fn sub(self, other: Self) -> Self

Performs the - operation. Read more
source§

impl<'a, P: Pairing> SubAssign<&'a PairingOutput<P>> for PairingOutput<P>

source§

fn sub_assign(&mut self, other: &'a Self)

Performs the -= operation. Read more
source§

impl<'a, P: Pairing> SubAssign<&'a mut PairingOutput<P>> for PairingOutput<P>

source§

fn sub_assign(&mut self, other: &'a mut Self)

Performs the -= operation. Read more
source§

impl<P: Pairing> SubAssign<PairingOutput<P>> for PairingOutput<P>

source§

fn sub_assign(&mut self, other: Self)

Performs the -= operation. Read more
source§

impl<'a, P: Pairing> Sum<&'a PairingOutput<P>> for PairingOutput<P>

source§

fn sum<I: Iterator<Item = &'a Self>>(iter: I) -> Self

Method which takes an iterator and generates Self from the elements by “summing up” the items.
source§

impl<P: Pairing> Sum<PairingOutput<P>> for PairingOutput<P>

source§

fn sum<I: Iterator<Item = Self>>(iter: I) -> Self

Method which takes an iterator and generates Self from the elements by “summing up” the items.
source§

impl<P: Pairing> Valid for PairingOutput<P>

source§

fn check(&self) -> Result<(), SerializationError>

source§

fn batch_check<'a>( batch: impl Iterator<Item = &'a Self> + Send ) -> Result<(), SerializationError>where Self: 'a,

source§

impl<P: Pairing> VariableBaseMSM for PairingOutput<P>

source§

fn msm_unchecked(bases: &[Self::MulBase], scalars: &[Self::ScalarField]) -> Self

Computes an inner product between the PrimeField elements in scalars and the corresponding group elements in bases. Read more
source§

fn msm( bases: &[Self::MulBase], scalars: &[Self::ScalarField] ) -> Result<Self, usize>

Performs multi-scalar multiplication, without checking that bases.len() == scalars.len(). Read more
source§

fn msm_bigint( bases: &[Self::MulBase], bigints: &[<Self::ScalarField as PrimeField>::BigInt] ) -> Self

Optimized implementation of multi-scalar multiplication.
source§

fn msm_chunks<I, J>(bases_stream: &J, scalars_stream: &I) -> Selfwhere I: Iterable + ?Sized, I::Item: Borrow<Self::ScalarField>, J: Iterable, J::Item: Borrow<Self::MulBase>,

Streaming multi-scalar multiplication algorithm with hard-coded chunk size.
source§

impl<P: Pairing> Zero for PairingOutput<P>

source§

fn zero() -> Self

The identity element, or “zero”, of the group is the identity element of the multiplicative group of the underlying field, i.e., P::TargetField::one().

source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl<P: Pairing> Zeroize for PairingOutput<P>

source§

fn zeroize(&mut self)

Zero out this object from memory using Rust intrinsics which ensure the zeroization operation is not “optimized away” by the compiler.
source§

impl<P> Copy for PairingOutput<P>where P: Pairing,

source§

impl<P> Eq for PairingOutput<P>where P: Pairing,

Auto Trait Implementations§

§

impl<P> RefUnwindSafe for PairingOutput<P>where <P as Pairing>::TargetField: RefUnwindSafe,

§

impl<P> Send for PairingOutput<P>

§

impl<P> Sync for PairingOutput<P>

§

impl<P> Unpin for PairingOutput<P>where <P as Pairing>::TargetField: Unpin,

§

impl<P> UnwindSafe for PairingOutput<P>where <P as Pairing>::TargetField: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CanonicalSerializeHashExt for Twhere T: CanonicalSerialize,

source§

fn hash<H>(&self) -> GenericArray<u8, <H as OutputSizeUser>::OutputSize>where H: Digest,

source§

fn hash_uncompressed<H>( &self ) -> GenericArray<u8, <H as OutputSizeUser>::OutputSize>where H: Digest,

source§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

impl<T> UniformRand for Twhere Standard: Distribution<T>,

source§

fn rand<R>(rng: &mut R) -> Twhere R: Rng + ?Sized,

§

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

§

fn vzip(self) -> V

source§

impl<T, F> DomainCoeff<F> for Twhere F: FftField, T: Copy + Send + Sync + Add<T, Output = T> + Sub<T, Output = T> + AddAssign<T> + SubAssign<T> + Zero + MulAssign<F> + Debug + PartialEq<T>,