pub struct CamlProofWithPublic<CamlG, CamlF> {
pub public_evals: Option<PointEvaluations<Vec<CamlF>>>,
pub proof: CamlProverProof<CamlG, CamlF>,
}
Expand description
Handy re-exports
Fields§
§public_evals: Option<PointEvaluations<Vec<CamlF>>>
§proof: CamlProverProof<CamlG, CamlF>
Trait Implementations§
Source§impl<G, CamlG, CamlF> From<(ProverProof<G, OpeningProof<G>>, Vec<<G as AffineRepr>::ScalarField>)> for CamlProofWithPublic<CamlG, CamlF>
impl<G, CamlG, CamlF> From<(ProverProof<G, OpeningProof<G>>, Vec<<G as AffineRepr>::ScalarField>)> for CamlProofWithPublic<CamlG, CamlF>
Source§fn from(
pp: (ProverProof<G, OpeningProof<G>>, Vec<<G as AffineRepr>::ScalarField>),
) -> CamlProofWithPublic<CamlG, CamlF>
fn from( pp: (ProverProof<G, OpeningProof<G>>, Vec<<G as AffineRepr>::ScalarField>), ) -> CamlProofWithPublic<CamlG, CamlF>
Converts to this type from the input type.
Source§impl<'from_value_lifetime, CamlG, CamlF> FromValue<'from_value_lifetime> for CamlProofWithPublic<CamlG, CamlF>where
Option<PointEvaluations<Vec<CamlF>>>: FromValue<'from_value_lifetime>,
CamlF: FromValue<'from_value_lifetime>,
CamlProverProof<CamlG, CamlF>: FromValue<'from_value_lifetime>,
CamlG: FromValue<'from_value_lifetime>,
impl<'from_value_lifetime, CamlG, CamlF> FromValue<'from_value_lifetime> for CamlProofWithPublic<CamlG, CamlF>where
Option<PointEvaluations<Vec<CamlF>>>: FromValue<'from_value_lifetime>,
CamlF: FromValue<'from_value_lifetime>,
CamlProverProof<CamlG, CamlF>: FromValue<'from_value_lifetime>,
CamlG: FromValue<'from_value_lifetime>,
Source§fn from_value(value: Value) -> CamlProofWithPublic<CamlG, CamlF>
fn from_value(value: Value) -> CamlProofWithPublic<CamlG, CamlF>
Convert from OCaml value
Source§impl<CamlG, CamlF> IntoValue for CamlProofWithPublic<CamlG, CamlF>where
Option<PointEvaluations<Vec<CamlF>>>: IntoValue,
CamlF: IntoValue,
CamlProverProof<CamlG, CamlF>: IntoValue,
CamlG: IntoValue,
impl<CamlG, CamlF> IntoValue for CamlProofWithPublic<CamlG, CamlF>where
Option<PointEvaluations<Vec<CamlF>>>: IntoValue,
CamlF: IntoValue,
CamlProverProof<CamlG, CamlF>: IntoValue,
CamlG: IntoValue,
Source§fn into_value(self, gc: &OCamlRuntime) -> Value
fn into_value(self, gc: &OCamlRuntime) -> Value
Convert to OCaml value
Source§impl<CamlG, CamlF> OCamlBinding for CamlProofWithPublic<CamlG, CamlF>where
CamlG: OCamlDesc,
CamlF: OCamlDesc,
impl<CamlG, CamlF> OCamlBinding for CamlProofWithPublic<CamlG, CamlF>where
CamlG: OCamlDesc,
CamlF: OCamlDesc,
Source§impl<CamlG, CamlF> OCamlDesc for CamlProofWithPublic<CamlG, CamlF>where
CamlG: OCamlDesc,
CamlF: OCamlDesc,
impl<CamlG, CamlF> OCamlDesc for CamlProofWithPublic<CamlG, CamlF>where
CamlG: OCamlDesc,
CamlF: OCamlDesc,
Source§fn ocaml_desc(env: &Env, generics: &[&str]) -> String
fn ocaml_desc(env: &Env, generics: &[&str]) -> String
describes the type in OCaml, given the current environment [Env]
and the list of generic type parameters of the root type
(the type that makes use of this type)
Auto Trait Implementations§
impl<CamlG, CamlF> Freeze for CamlProofWithPublic<CamlG, CamlF>
impl<CamlG, CamlF> RefUnwindSafe for CamlProofWithPublic<CamlG, CamlF>where
CamlF: RefUnwindSafe,
CamlG: RefUnwindSafe,
impl<CamlG, CamlF> Send for CamlProofWithPublic<CamlG, CamlF>
impl<CamlG, CamlF> Sync for CamlProofWithPublic<CamlG, CamlF>
impl<CamlG, CamlF> Unpin for CamlProofWithPublic<CamlG, CamlF>
impl<CamlG, CamlF> UnwindSafe for CamlProofWithPublic<CamlG, CamlF>where
CamlF: UnwindSafe,
CamlG: 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