pub struct Proof<F: Field> { /* private fields */ }Expand description
A complete proof of constraint satisfaction.
Implementations§
Source§impl<F: Field> Proof<F>
impl<F: Field> Proof<F>
Sourcepub fn witness_commitment(&self) -> &MerkleRoot
pub fn witness_commitment(&self) -> &MerkleRoot
The Merkle root committing to the witness.
Sourcepub fn sumcheck_proof(&self) -> &SumcheckProof<F>
pub fn sumcheck_proof(&self) -> &SumcheckProof<F>
The sumcheck proof.
Sourcepub fn wire_openings(&self) -> &[WireOpening<F>]
pub fn wire_openings(&self) -> &[WireOpening<F>]
The opened wire values with Merkle proofs.
Trait Implementations§
Auto Trait Implementations§
impl<F> Freeze for Proof<F>
impl<F> RefUnwindSafe for Proof<F>where
F: RefUnwindSafe,
impl<F> Send for Proof<F>where
F: Send,
impl<F> Sync for Proof<F>where
F: Sync,
impl<F> Unpin for Proof<F>where
F: Unpin,
impl<F> UnsafeUnpin for Proof<F>
impl<F> UnwindSafe for Proof<F>where
F: 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