pub struct MillerLoopOutput<P>(pub <P as Pairing>::TargetField)
where
P: Pairing;
Expand description
Represents the output of the Miller loop of the pairing.
Tuple Fields§
§0: <P as Pairing>::TargetField
Trait Implementations§
Source§impl<P> Clone for MillerLoopOutput<P>
impl<P> Clone for MillerLoopOutput<P>
Source§fn clone(&self) -> MillerLoopOutput<P>
fn clone(&self) -> MillerLoopOutput<P>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<P> Debug for MillerLoopOutput<P>
impl<P> Debug for MillerLoopOutput<P>
Source§impl<P> Mul<<P as Pairing>::ScalarField> for MillerLoopOutput<P>where
P: Pairing,
impl<P> Mul<<P as Pairing>::ScalarField> for MillerLoopOutput<P>where
P: Pairing,
Source§type Output = MillerLoopOutput<P>
type Output = MillerLoopOutput<P>
The resulting type after applying the
*
operator.Source§fn mul(self, other: <P as Pairing>::ScalarField) -> MillerLoopOutput<P>
fn mul(self, other: <P as Pairing>::ScalarField) -> MillerLoopOutput<P>
Performs the
*
operation. Read moreSource§impl<P> Ord for MillerLoopOutput<P>
impl<P> Ord for MillerLoopOutput<P>
Source§fn cmp(&self, other: &MillerLoopOutput<P>) -> Ordering
fn cmp(&self, other: &MillerLoopOutput<P>) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<P> PartialEq for MillerLoopOutput<P>
impl<P> PartialEq for MillerLoopOutput<P>
Source§impl<P> PartialOrd for MillerLoopOutput<P>
impl<P> PartialOrd for MillerLoopOutput<P>
impl<P> Copy for MillerLoopOutput<P>
impl<P> Eq for MillerLoopOutput<P>
Auto Trait Implementations§
impl<P> Freeze for MillerLoopOutput<P>
impl<P> RefUnwindSafe for MillerLoopOutput<P>
impl<P> Send for MillerLoopOutput<P>
impl<P> Sync for MillerLoopOutput<P>
impl<P> Unpin for MillerLoopOutput<P>
impl<P> UnwindSafe for MillerLoopOutput<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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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