pub struct Proof<F, C, const D: usize>{
pub wires_cap: MerkleCap<F, <C as GenericConfig<D>>::Hasher>,
pub plonk_zs_partial_products_cap: MerkleCap<F, <C as GenericConfig<D>>::Hasher>,
pub quotient_polys_cap: MerkleCap<F, <C as GenericConfig<D>>::Hasher>,
pub openings: OpeningSet<F, D>,
pub opening_proof: FriProof<F, <C as GenericConfig<D>>::Hasher, D>,
}Fields§
§wires_cap: MerkleCap<F, <C as GenericConfig<D>>::Hasher>Merkle cap of LDEs of wire values.
plonk_zs_partial_products_cap: MerkleCap<F, <C as GenericConfig<D>>::Hasher>Merkle cap of LDEs of Z, in the context of Plonk’s permutation argument.
quotient_polys_cap: MerkleCap<F, <C as GenericConfig<D>>::Hasher>Merkle cap of LDEs of the quotient polynomial components.
openings: OpeningSet<F, D>Purported values of each polynomial at the challenge point.
opening_proof: FriProof<F, <C as GenericConfig<D>>::Hasher, D>A batch FRI argument for all openings.
Implementations§
Trait Implementations§
Source§impl<F, C, const D: usize> Clone for Proof<F, C, D>where
F: Clone + RichField + Extendable<D>,
C: Clone + GenericConfig<D, F = F>,
<C as GenericConfig<D>>::Hasher: Clone,
impl<F, C, const D: usize> Clone for Proof<F, C, D>where
F: Clone + RichField + Extendable<D>,
C: Clone + GenericConfig<D, F = F>,
<C as GenericConfig<D>>::Hasher: Clone,
Source§impl<F, C, const D: usize> Debug for Proof<F, C, D>where
F: Debug + RichField + Extendable<D>,
C: Debug + GenericConfig<D, F = F>,
<C as GenericConfig<D>>::Hasher: Debug,
impl<F, C, const D: usize> Debug for Proof<F, C, D>where
F: Debug + RichField + Extendable<D>,
C: Debug + GenericConfig<D, F = F>,
<C as GenericConfig<D>>::Hasher: Debug,
Source§impl<'de, F, C, const D: usize> Deserialize<'de> for Proof<F, C, D>
impl<'de, F, C, const D: usize> Deserialize<'de> for Proof<F, C, D>
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<Proof<F, C, D>, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<Proof<F, C, D>, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<F, C, const D: usize> PartialEq for Proof<F, C, D>where
F: PartialEq + RichField + Extendable<D>,
C: PartialEq + GenericConfig<D, F = F>,
<C as GenericConfig<D>>::Hasher: PartialEq,
impl<F, C, const D: usize> PartialEq for Proof<F, C, D>where
F: PartialEq + RichField + Extendable<D>,
C: PartialEq + GenericConfig<D, F = F>,
<C as GenericConfig<D>>::Hasher: PartialEq,
Source§impl<F, C, const D: usize> Serialize for Proof<F, C, D>
impl<F, C, const D: usize> Serialize for Proof<F, C, D>
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl<F, C, const D: usize> Eq for Proof<F, C, D>where
F: Eq + RichField + Extendable<D>,
C: Eq + GenericConfig<D, F = F>,
<C as GenericConfig<D>>::Hasher: Eq,
impl<F, C, const D: usize> StructuralPartialEq for Proof<F, C, D>
Auto Trait Implementations§
impl<F, C, const D: usize> Freeze for Proof<F, C, D>where
F: Freeze,
impl<F, C, const D: usize> RefUnwindSafe for Proof<F, C, D>where
F: RefUnwindSafe,
<<C as GenericConfig<D>>::Hasher as Hasher<F>>::Hash: RefUnwindSafe,
<F as Extendable<D>>::Extension: RefUnwindSafe,
impl<F, C, const D: usize> Send for Proof<F, C, D>
impl<F, C, const D: usize> Sync for Proof<F, C, D>
impl<F, C, const D: usize> Unpin for Proof<F, C, D>where
F: Unpin,
<<C as GenericConfig<D>>::Hasher as Hasher<F>>::Hash: Unpin,
<F as Extendable<D>>::Extension: Unpin,
impl<F, C, const D: usize> UnsafeUnpin for Proof<F, C, D>where
F: UnsafeUnpin,
impl<F, C, const D: usize> UnwindSafe for Proof<F, C, D>where
F: UnwindSafe,
<<C as GenericConfig<D>>::Hasher as Hasher<F>>::Hash: UnwindSafe,
<F as Extendable<D>>::Extension: 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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§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