pub struct RFSumcheckProof<F: PrimeField, R>(pub SumcheckProof<F>, _);Tuple Fields§
§0: SumcheckProof<F>Implementations§
Source§impl<F: PrimeField, R> RFSumcheckProof<F, R>
impl<F: PrimeField, R> RFSumcheckProof<F, R>
pub fn new(inner: SumcheckProof<F>) -> Self
Trait Implementations§
Source§impl<F: Clone + PrimeField, R: Clone> Clone for RFSumcheckProof<F, R>
impl<F: Clone + PrimeField, R: Clone> Clone for RFSumcheckProof<F, R>
Source§fn clone(&self) -> RFSumcheckProof<F, R>
fn clone(&self) -> RFSumcheckProof<F, R>
Returns a duplicate 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 moreimpl<F: PrimeField, R> StructuralPartialEq for RFSumcheckProof<F, R>
Auto Trait Implementations§
impl<F, R> Freeze for RFSumcheckProof<F, R>where
F: Freeze,
impl<F, R> RefUnwindSafe for RFSumcheckProof<F, R>where
F: RefUnwindSafe,
R: RefUnwindSafe,
impl<F, R> Send for RFSumcheckProof<F, R>where
R: Send,
impl<F, R> Sync for RFSumcheckProof<F, R>where
R: Sync,
impl<F, R> Unpin for RFSumcheckProof<F, R>
impl<F, R> UnsafeUnpin for RFSumcheckProof<F, R>where
F: UnsafeUnpin,
impl<F, R> UnwindSafe for RFSumcheckProof<F, R>where
F: UnwindSafe,
R: UnwindSafe,
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> 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