Struct kimchi::prover::caml::CamlProofWithPublic
source · pub struct CamlProofWithPublic<CamlG, CamlF> {
pub public_evals: Option<PointEvaluations<Vec<CamlF>>>,
pub proof: CamlProverProof<CamlG, CamlF>,
}
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, Global>)> for CamlProofWithPublic<CamlG, CamlF>where
G: AffineRepr,
CamlG: From<G>,
CamlF: From<G::ScalarField>,
impl<G, CamlG, CamlF> From<(ProverProof<G, OpeningProof<G>>, Vec<<G as AffineRepr>::ScalarField, Global>)> for CamlProofWithPublic<CamlG, CamlF>where G: AffineRepr, CamlG: From<G>, CamlF: From<G::ScalarField>,
source§fn from(pp: (ProverProof<G, OpeningProof<G>>, Vec<G::ScalarField>)) -> Self
fn from(pp: (ProverProof<G, OpeningProof<G>>, Vec<G::ScalarField>)) -> Self
Converts to this type from the input type.
source§impl<G, CamlG, CamlF> From<CamlProofWithPublic<CamlG, CamlF>> for (ProverProof<G, OpeningProof<G>>, Vec<G::ScalarField>)where
CamlF: Clone,
G: AffineRepr + From<CamlG>,
G::ScalarField: From<CamlF>,
impl<G, CamlG, CamlF> From<CamlProofWithPublic<CamlG, CamlF>> for (ProverProof<G, OpeningProof<G>>, Vec<G::ScalarField>)where CamlF: Clone, G: AffineRepr + From<CamlG>, G::ScalarField: From<CamlF>,
source§fn from(
caml_pp: CamlProofWithPublic<CamlG, CamlF>
) -> (ProverProof<G, OpeningProof<G>>, Vec<G::ScalarField>)
fn from( caml_pp: CamlProofWithPublic<CamlG, CamlF> ) -> (ProverProof<G, OpeningProof<G>>, Vec<G::ScalarField>)
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) -> Self
fn from_value(value: Value) -> Self
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: &Runtime) -> Value
fn into_value(self, gc: &Runtime) -> 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> RefUnwindSafe for CamlProofWithPublic<CamlG, CamlF>where CamlF: RefUnwindSafe, CamlG: RefUnwindSafe,
impl<CamlG, CamlF> Send for CamlProofWithPublic<CamlG, CamlF>where CamlF: Send, CamlG: Send,
impl<CamlG, CamlF> Sync for CamlProofWithPublic<CamlG, CamlF>where CamlF: Sync, CamlG: Sync,
impl<CamlG, CamlF> Unpin for CamlProofWithPublic<CamlG, CamlF>where CamlF: Unpin, CamlG: Unpin,
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