pub struct FirstReduceMessage<G1, G2, GT> {
pub d1_left: GT,
pub d1_right: GT,
pub d2_left: GT,
pub d2_right: GT,
pub e1_beta: G1,
pub e2_beta: G2,
}Expand description
First prover message in the Dory-Reduce protocol (Section 3.2)
Contains D₁L, D₁R, D₂L, D₂R, E₁β, E₂β
Fields§
§d1_left: GTD₁L - left pairing for first set
d1_right: GTD₁R - right pairing for first set
d2_left: GTD₂L - left pairing for second set
d2_right: GTD₂R - right pairing for second set
e1_beta: G1E₁β - extension element in G1 (Section 4.2)
e2_beta: G2E₂β - extension element in G2 (Section 4.2)
Trait Implementations§
Auto Trait Implementations§
impl<G1, G2, GT> Freeze for FirstReduceMessage<G1, G2, GT>
impl<G1, G2, GT> RefUnwindSafe for FirstReduceMessage<G1, G2, GT>
impl<G1, G2, GT> Send for FirstReduceMessage<G1, G2, GT>
impl<G1, G2, GT> Sync for FirstReduceMessage<G1, G2, GT>
impl<G1, G2, GT> Unpin for FirstReduceMessage<G1, G2, GT>
impl<G1, G2, GT> UnwindSafe for FirstReduceMessage<G1, G2, GT>
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<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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