Struct ivc::prover::ProofCommitments
source · pub struct ProofCommitments<const N_WIT: usize, G: KimchiCurve> {
pub witness_comms: Witness<N_WIT, PolyComm<G>>,
pub t_comm: PolyComm<G>,
}
Fields§
§witness_comms: Witness<N_WIT, PolyComm<G>>
Commitments to the N columns of the circuits, also called the ‘witnesses’. If some columns are considered as public inputs, it is counted in the witness.
t_comm: PolyComm<G>
Commitments to the quotient polynomial. The value contains the chunked polynomials.
Trait Implementations§
source§impl<const N_WIT: usize, G: Clone + KimchiCurve> Clone for ProofCommitments<N_WIT, G>
impl<const N_WIT: usize, G: Clone + KimchiCurve> Clone for ProofCommitments<N_WIT, G>
source§fn clone(&self) -> ProofCommitments<N_WIT, G>
fn clone(&self) -> ProofCommitments<N_WIT, G>
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 moreAuto Trait Implementations§
impl<const N_WIT: usize, G> RefUnwindSafe for ProofCommitments<N_WIT, G>where G: RefUnwindSafe,
impl<const N_WIT: usize, G> Send for ProofCommitments<N_WIT, G>
impl<const N_WIT: usize, G> Sync for ProofCommitments<N_WIT, G>
impl<const N_WIT: usize, G> Unpin for ProofCommitments<N_WIT, G>where G: Unpin,
impl<const N_WIT: usize, G> UnwindSafe for ProofCommitments<N_WIT, G>where G: 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