pub struct ProofGenericPCS<F: TowerField, PCSComm, PCSProof> {
pub commitments: Vec<PCSComm>,
pub flush_products: Vec<F>,
pub non_zero_products: Vec<F>,
pub prodcheck_proof: GrandProductBatchProof<F>,
pub zerocheck_univariate_proof: ZerocheckUnivariateProof<F>,
pub zerocheck_proof: Proof<F>,
pub univariatizing_proof: Proof<F>,
pub greedy_evalcheck_proof: GreedyEvalcheckProof<F>,
pub pcs_proofs: Vec<PCSProof>,
pub transcript: Vec<u8>,
pub advice: Vec<u8>,
}
Expand description
Constraint system proof with a generic crate::poly_commit::PolyCommitScheme
.
Fields§
§commitments: Vec<PCSComm>
§flush_products: Vec<F>
§non_zero_products: Vec<F>
§prodcheck_proof: GrandProductBatchProof<F>
§zerocheck_univariate_proof: ZerocheckUnivariateProof<F>
§zerocheck_proof: Proof<F>
§univariatizing_proof: Proof<F>
§greedy_evalcheck_proof: GreedyEvalcheckProof<F>
§pcs_proofs: Vec<PCSProof>
§transcript: Vec<u8>
§advice: Vec<u8>
Trait Implementations§
source§impl<F: Clone + TowerField, PCSComm: Clone, PCSProof: Clone> Clone for ProofGenericPCS<F, PCSComm, PCSProof>
impl<F: Clone + TowerField, PCSComm: Clone, PCSProof: Clone> Clone for ProofGenericPCS<F, PCSComm, PCSProof>
source§fn clone(&self) -> ProofGenericPCS<F, PCSComm, PCSProof>
fn clone(&self) -> ProofGenericPCS<F, PCSComm, PCSProof>
Returns a copy of the value. Read more
1.6.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl<F, PCSComm, PCSProof> Freeze for ProofGenericPCS<F, PCSComm, PCSProof>
impl<F, PCSComm, PCSProof> RefUnwindSafe for ProofGenericPCS<F, PCSComm, PCSProof>where
<F as WithUnderlier>::Underlier: Sized,
PCSComm: RefUnwindSafe,
F: RefUnwindSafe,
PCSProof: RefUnwindSafe,
impl<F, PCSComm, PCSProof> Send for ProofGenericPCS<F, PCSComm, PCSProof>
impl<F, PCSComm, PCSProof> Sync for ProofGenericPCS<F, PCSComm, PCSProof>
impl<F, PCSComm, PCSProof> Unpin for ProofGenericPCS<F, PCSComm, PCSProof>
impl<F, PCSComm, PCSProof> UnwindSafe for ProofGenericPCS<F, PCSComm, PCSProof>where
<F as WithUnderlier>::Underlier: Sized,
PCSComm: UnwindSafe,
F: UnwindSafe,
PCSProof: 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§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
)§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