Struct kimchi::prover::caml::CamlLookupCommitments
source · pub struct CamlLookupCommitments<CamlG> {
pub sorted: Vec<CamlPolyComm<CamlG>>,
pub aggreg: CamlPolyComm<CamlG>,
pub runtime: Option<CamlPolyComm<CamlG>>,
}
Fields§
§sorted: Vec<CamlPolyComm<CamlG>>
§aggreg: CamlPolyComm<CamlG>
§runtime: Option<CamlPolyComm<CamlG>>
Trait Implementations§
source§impl<CamlG: Clone> Clone for CamlLookupCommitments<CamlG>
impl<CamlG: Clone> Clone for CamlLookupCommitments<CamlG>
source§fn clone(&self) -> CamlLookupCommitments<CamlG>
fn clone(&self) -> CamlLookupCommitments<CamlG>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<G, CamlG> From<CamlLookupCommitments<CamlG>> for LookupCommitments<G>where
G: AffineRepr,
PolyComm<G>: From<CamlPolyComm<CamlG>>,
impl<G, CamlG> From<CamlLookupCommitments<CamlG>> for LookupCommitments<G>where G: AffineRepr, PolyComm<G>: From<CamlPolyComm<CamlG>>,
source§fn from(_: CamlLookupCommitments<CamlG>) -> LookupCommitments<G>
fn from(_: CamlLookupCommitments<CamlG>) -> LookupCommitments<G>
Converts to this type from the input type.
source§impl<G, CamlG> From<LookupCommitments<G>> for CamlLookupCommitments<CamlG>where
G: AffineRepr,
CamlPolyComm<CamlG>: From<PolyComm<G>>,
impl<G, CamlG> From<LookupCommitments<G>> for CamlLookupCommitments<CamlG>where G: AffineRepr, CamlPolyComm<CamlG>: From<PolyComm<G>>,
source§fn from(_: LookupCommitments<G>) -> Self
fn from(_: LookupCommitments<G>) -> Self
Converts to this type from the input type.
source§impl<'from_value_lifetime, CamlG> FromValue<'from_value_lifetime> for CamlLookupCommitments<CamlG>where
Vec<CamlPolyComm<CamlG>>: FromValue<'from_value_lifetime>,
CamlG: FromValue<'from_value_lifetime>,
CamlPolyComm<CamlG>: FromValue<'from_value_lifetime>,
Option<CamlPolyComm<CamlG>>: FromValue<'from_value_lifetime>,
impl<'from_value_lifetime, CamlG> FromValue<'from_value_lifetime> for CamlLookupCommitments<CamlG>where Vec<CamlPolyComm<CamlG>>: FromValue<'from_value_lifetime>, CamlG: FromValue<'from_value_lifetime>, CamlPolyComm<CamlG>: FromValue<'from_value_lifetime>, Option<CamlPolyComm<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> IntoValue for CamlLookupCommitments<CamlG>where
Vec<CamlPolyComm<CamlG>>: IntoValue,
CamlG: IntoValue,
CamlPolyComm<CamlG>: IntoValue,
Option<CamlPolyComm<CamlG>>: IntoValue,
impl<CamlG> IntoValue for CamlLookupCommitments<CamlG>where Vec<CamlPolyComm<CamlG>>: IntoValue, CamlG: IntoValue, CamlPolyComm<CamlG>: IntoValue, Option<CamlPolyComm<CamlG>>: IntoValue,
source§fn into_value(self, gc: &Runtime) -> Value
fn into_value(self, gc: &Runtime) -> Value
Convert to OCaml value
source§impl<CamlG> OCamlBinding for CamlLookupCommitments<CamlG>where
CamlG: OCamlDesc,
impl<CamlG> OCamlBinding for CamlLookupCommitments<CamlG>where CamlG: OCamlDesc,
source§impl<CamlG> OCamlDesc for CamlLookupCommitments<CamlG>where
CamlG: OCamlDesc,
impl<CamlG> OCamlDesc for CamlLookupCommitments<CamlG>where CamlG: 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> RefUnwindSafe for CamlLookupCommitments<CamlG>where CamlG: RefUnwindSafe,
impl<CamlG> Send for CamlLookupCommitments<CamlG>where CamlG: Send,
impl<CamlG> Sync for CamlLookupCommitments<CamlG>where CamlG: Sync,
impl<CamlG> Unpin for CamlLookupCommitments<CamlG>where CamlG: Unpin,
impl<CamlG> UnwindSafe for CamlLookupCommitments<CamlG>where 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