pub struct Proof<const FULL_ROUNDS: usize, G: KimchiCurve<FULL_ROUNDS>> {
pub commitments: AllColumns<G>,
pub evaluations: Eval<G::ScalarField>,
pub ipa_proof: OpeningProof<G, FULL_ROUNDS>,
}Fields§
§commitments: AllColumns<G>§evaluations: Eval<G::ScalarField>§ipa_proof: OpeningProof<G, FULL_ROUNDS>Auto Trait Implementations§
impl<const FULL_ROUNDS: usize, G> Freeze for Proof<FULL_ROUNDS, G>
impl<const FULL_ROUNDS: usize, G> RefUnwindSafe for Proof<FULL_ROUNDS, G>where
G: RefUnwindSafe,
<G as AffineRepr>::ScalarField: RefUnwindSafe,
impl<const FULL_ROUNDS: usize, G> Send for Proof<FULL_ROUNDS, G>
impl<const FULL_ROUNDS: usize, G> Sync for Proof<FULL_ROUNDS, G>
impl<const FULL_ROUNDS: usize, G> Unpin for Proof<FULL_ROUNDS, G>
impl<const FULL_ROUNDS: usize, G> UnwindSafe for Proof<FULL_ROUNDS, G>where
G: UnwindSafe,
<G as AffineRepr>::ScalarField: 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