pub struct PIOPSumcheckClaimDesc<'a, F: Field> {
pub committed_idx: usize,
pub suffix_desc_idx: usize,
pub eval_claim: &'a EvalcheckMultilinearClaim<F>,
}
Expand description
An incomplete crate::piop::PIOPSumcheckClaim
for which the sum has not been determined yet.
Fields§
§committed_idx: usize
Index of the committed multilinear, referencing the commit metadata.
suffix_desc_idx: usize
Index of the suffix descriptor, referencing the slice in an EvalClaimSystem
.
eval_claim: &'a EvalcheckMultilinearClaim<F>
Trait Implementations§
Auto Trait Implementations§
impl<'a, F> Freeze for PIOPSumcheckClaimDesc<'a, F>
impl<'a, F> !RefUnwindSafe for PIOPSumcheckClaimDesc<'a, F>
impl<'a, F> Send for PIOPSumcheckClaimDesc<'a, F>
impl<'a, F> Sync for PIOPSumcheckClaimDesc<'a, F>
impl<'a, F> Unpin for PIOPSumcheckClaimDesc<'a, F>
impl<'a, F> !UnwindSafe for PIOPSumcheckClaimDesc<'a, F>
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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