Struct kimchi::prover::caml::CamlProverProof
source · pub struct CamlProverProof<CamlG, CamlF> {
pub commitments: CamlProverCommitments<CamlG>,
pub proof: CamlOpeningProof<CamlG, CamlF>,
pub evals: CamlProofEvaluations<CamlF>,
pub ft_eval1: CamlF,
pub public: Vec<CamlF>,
pub prev_challenges: Vec<CamlRecursionChallenge<CamlG, CamlF>>,
}
Fields§
§commitments: CamlProverCommitments<CamlG>
§proof: CamlOpeningProof<CamlG, CamlF>
§evals: CamlProofEvaluations<CamlF>
§ft_eval1: CamlF
§public: Vec<CamlF>
§prev_challenges: Vec<CamlRecursionChallenge<CamlG, CamlF>>
Trait Implementations§
source§impl<'from_value_lifetime, CamlG, CamlF> FromValue<'from_value_lifetime> for CamlProverProof<CamlG, CamlF>where
CamlProverCommitments<CamlG>: FromValue<'from_value_lifetime>,
CamlG: FromValue<'from_value_lifetime>,
CamlOpeningProof<CamlG, CamlF>: FromValue<'from_value_lifetime>,
CamlF: FromValue<'from_value_lifetime>,
CamlProofEvaluations<CamlF>: FromValue<'from_value_lifetime>,
Vec<CamlF>: FromValue<'from_value_lifetime>,
Vec<CamlRecursionChallenge<CamlG, CamlF>>: FromValue<'from_value_lifetime>,
impl<'from_value_lifetime, CamlG, CamlF> FromValue<'from_value_lifetime> for CamlProverProof<CamlG, CamlF>where CamlProverCommitments<CamlG>: FromValue<'from_value_lifetime>, CamlG: FromValue<'from_value_lifetime>, CamlOpeningProof<CamlG, CamlF>: FromValue<'from_value_lifetime>, CamlF: FromValue<'from_value_lifetime>, CamlProofEvaluations<CamlF>: FromValue<'from_value_lifetime>, Vec<CamlF>: FromValue<'from_value_lifetime>, Vec<CamlRecursionChallenge<CamlG, CamlF>>: 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 CamlProverProof<CamlG, CamlF>where
CamlProverCommitments<CamlG>: IntoValue,
CamlG: IntoValue,
CamlOpeningProof<CamlG, CamlF>: IntoValue,
CamlF: IntoValue,
CamlProofEvaluations<CamlF>: IntoValue,
Vec<CamlF>: IntoValue,
Vec<CamlRecursionChallenge<CamlG, CamlF>>: IntoValue,
impl<CamlG, CamlF> IntoValue for CamlProverProof<CamlG, CamlF>where CamlProverCommitments<CamlG>: IntoValue, CamlG: IntoValue, CamlOpeningProof<CamlG, CamlF>: IntoValue, CamlF: IntoValue, CamlProofEvaluations<CamlF>: IntoValue, Vec<CamlF>: IntoValue, Vec<CamlRecursionChallenge<CamlG, CamlF>>: 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 CamlProverProof<CamlG, CamlF>where
CamlG: OCamlDesc,
CamlF: OCamlDesc,
impl<CamlG, CamlF> OCamlBinding for CamlProverProof<CamlG, CamlF>where CamlG: OCamlDesc, CamlF: OCamlDesc,
source§impl<CamlG, CamlF> OCamlDesc for CamlProverProof<CamlG, CamlF>where
CamlG: OCamlDesc,
CamlF: OCamlDesc,
impl<CamlG, CamlF> OCamlDesc for CamlProverProof<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 CamlProverProof<CamlG, CamlF>where CamlF: RefUnwindSafe, CamlG: RefUnwindSafe,
impl<CamlG, CamlF> Send for CamlProverProof<CamlG, CamlF>where CamlF: Send, CamlG: Send,
impl<CamlG, CamlF> Sync for CamlProverProof<CamlG, CamlF>where CamlF: Sync, CamlG: Sync,
impl<CamlG, CamlF> Unpin for CamlProverProof<CamlG, CamlF>where CamlF: Unpin, CamlG: Unpin,
impl<CamlG, CamlF> UnwindSafe for CamlProverProof<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