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>>,
}
Expand description
Handy re-exports
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) -> CamlProverProof<CamlG, CamlF>
fn from_value(value: Value) -> CamlProverProof<CamlG, CamlF>
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: &OCamlRuntime) -> Value
fn into_value(self, gc: &OCamlRuntime) -> 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> Freeze for CamlProverProof<CamlG, CamlF>
impl<CamlG, CamlF> RefUnwindSafe for CamlProverProof<CamlG, CamlF>where
CamlF: RefUnwindSafe,
CamlG: RefUnwindSafe,
impl<CamlG, CamlF> Send for CamlProverProof<CamlG, CamlF>
impl<CamlG, CamlF> Sync for CamlProverProof<CamlG, CamlF>
impl<CamlG, CamlF> Unpin for CamlProverProof<CamlG, CamlF>
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