Struct kimchi_stubs::CamlProofWithPublic
source · pub struct CamlProofWithPublic<CamlG, CamlF> {
pub public_evals: Option<PointEvaluations<Vec<CamlF, Global>>>,
pub proof: CamlProverProof<CamlG, CamlF>,
}
Expand description
Handy re-exports
Fields§
§public_evals: Option<PointEvaluations<Vec<CamlF, Global>>>
§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 as AffineRepr>::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 as AffineRepr>::ScalarField>,
source§fn from(
pp: (ProverProof<G, OpeningProof<G>>, Vec<<G as AffineRepr>::ScalarField, Global>)
) -> CamlProofWithPublic<CamlG, CamlF>
fn from( pp: (ProverProof<G, OpeningProof<G>>, Vec<<G as AffineRepr>::ScalarField, Global>) ) -> 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, Global>>>: 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, Global>>>: 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, Global>>>: IntoValue,
CamlF: IntoValue,
CamlProverProof<CamlG, CamlF>: IntoValue,
CamlG: IntoValue,
impl<CamlG, CamlF> IntoValue for CamlProofWithPublic<CamlG, CamlF>where Option<PointEvaluations<Vec<CamlF, Global>>>: 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> 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