pub struct CamlLookupVerifierIndex<PolyComm> {
pub joint_lookup_used: bool,
pub lookup_table: Vec<PolyComm>,
pub lookup_selectors: CamlLookupSelectors<PolyComm>,
pub table_ids: Option<PolyComm>,
pub lookup_info: CamlLookupInfo,
pub runtime_tables_selector: Option<PolyComm>,
}
Fields§
§joint_lookup_used: bool
§lookup_table: Vec<PolyComm>
§lookup_selectors: CamlLookupSelectors<PolyComm>
§table_ids: Option<PolyComm>
§lookup_info: CamlLookupInfo
§runtime_tables_selector: Option<PolyComm>
Trait Implementations§
Source§impl<G, CamlPolyComm> From<CamlLookupVerifierIndex<CamlPolyComm>> for LookupVerifierIndex<G>where
G: AffineRepr + CommitmentCurve,
PolyComm<G>: From<CamlPolyComm>,
impl<G, CamlPolyComm> From<CamlLookupVerifierIndex<CamlPolyComm>> for LookupVerifierIndex<G>where
G: AffineRepr + CommitmentCurve,
PolyComm<G>: From<CamlPolyComm>,
Source§fn from(li: CamlLookupVerifierIndex<CamlPolyComm>) -> Self
fn from(li: CamlLookupVerifierIndex<CamlPolyComm>) -> Self
Converts to this type from the input type.
Source§impl<G, CamlPolyComm> From<LookupVerifierIndex<G>> for CamlLookupVerifierIndex<CamlPolyComm>where
G: AffineRepr + CommitmentCurve,
CamlPolyComm: From<PolyComm<G>>,
impl<G, CamlPolyComm> From<LookupVerifierIndex<G>> for CamlLookupVerifierIndex<CamlPolyComm>where
G: AffineRepr + CommitmentCurve,
CamlPolyComm: From<PolyComm<G>>,
Source§fn from(li: LookupVerifierIndex<G>) -> Self
fn from(li: LookupVerifierIndex<G>) -> Self
Converts to this type from the input type.
Source§impl<'from_value_lifetime, PolyComm> FromValue<'from_value_lifetime> for CamlLookupVerifierIndex<PolyComm>where
Vec<PolyComm>: FromValue<'from_value_lifetime>,
PolyComm: FromValue<'from_value_lifetime>,
CamlLookupSelectors<PolyComm>: FromValue<'from_value_lifetime>,
Option<PolyComm>: FromValue<'from_value_lifetime>,
impl<'from_value_lifetime, PolyComm> FromValue<'from_value_lifetime> for CamlLookupVerifierIndex<PolyComm>where
Vec<PolyComm>: FromValue<'from_value_lifetime>,
PolyComm: FromValue<'from_value_lifetime>,
CamlLookupSelectors<PolyComm>: FromValue<'from_value_lifetime>,
Option<PolyComm>: FromValue<'from_value_lifetime>,
Source§fn from_value(value: Value) -> Self
fn from_value(value: Value) -> Self
Convert from OCaml value
Source§impl<PolyComm> IntoValue for CamlLookupVerifierIndex<PolyComm>where
Vec<PolyComm>: IntoValue,
PolyComm: IntoValue,
CamlLookupSelectors<PolyComm>: IntoValue,
Option<PolyComm>: IntoValue,
impl<PolyComm> IntoValue for CamlLookupVerifierIndex<PolyComm>where
Vec<PolyComm>: IntoValue,
PolyComm: IntoValue,
CamlLookupSelectors<PolyComm>: IntoValue,
Option<PolyComm>: IntoValue,
Source§fn into_value(self, gc: &Runtime) -> Value
fn into_value(self, gc: &Runtime) -> Value
Convert to OCaml value
Source§impl<PolyComm> OCamlBinding for CamlLookupVerifierIndex<PolyComm>where
PolyComm: OCamlDesc,
impl<PolyComm> OCamlBinding for CamlLookupVerifierIndex<PolyComm>where
PolyComm: OCamlDesc,
Source§impl<PolyComm> OCamlDesc for CamlLookupVerifierIndex<PolyComm>where
PolyComm: OCamlDesc,
impl<PolyComm> OCamlDesc for CamlLookupVerifierIndex<PolyComm>where
PolyComm: 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<PolyComm> Freeze for CamlLookupVerifierIndex<PolyComm>where
PolyComm: Freeze,
impl<PolyComm> RefUnwindSafe for CamlLookupVerifierIndex<PolyComm>where
PolyComm: RefUnwindSafe,
impl<PolyComm> Send for CamlLookupVerifierIndex<PolyComm>where
PolyComm: Send,
impl<PolyComm> Sync for CamlLookupVerifierIndex<PolyComm>where
PolyComm: Sync,
impl<PolyComm> Unpin for CamlLookupVerifierIndex<PolyComm>where
PolyComm: Unpin,
impl<PolyComm> UnwindSafe for CamlLookupVerifierIndex<PolyComm>where
PolyComm: 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