pub struct CamlLookupSelectors<T> {
pub lookup: Option<T>,
pub xor: Option<T>,
pub range_check: Option<T>,
pub ffmul: Option<T>,
}
Fields§
§lookup: Option<T>
§xor: Option<T>
§range_check: Option<T>
§ffmul: Option<T>
Trait Implementations§
source§impl<G, CamlPolyComm> From<CamlLookupSelectors<CamlPolyComm>> for LookupSelectors<PolyComm<G>>where
G: AffineRepr + CommitmentCurve,
PolyComm<G>: From<CamlPolyComm>,
impl<G, CamlPolyComm> From<CamlLookupSelectors<CamlPolyComm>> for LookupSelectors<PolyComm<G>>where G: AffineRepr + CommitmentCurve, PolyComm<G>: From<CamlPolyComm>,
source§fn from(val: CamlLookupSelectors<CamlPolyComm>) -> Self
fn from(val: CamlLookupSelectors<CamlPolyComm>) -> Self
Converts to this type from the input type.
source§impl<G, CamlPolyComm> From<LookupSelectors<PolyComm<G>>> for CamlLookupSelectors<CamlPolyComm>where
G: AffineRepr + CommitmentCurve,
CamlPolyComm: From<PolyComm<G>>,
impl<G, CamlPolyComm> From<LookupSelectors<PolyComm<G>>> for CamlLookupSelectors<CamlPolyComm>where G: AffineRepr + CommitmentCurve, CamlPolyComm: From<PolyComm<G>>,
source§fn from(val: LookupSelectors<PolyComm<G>>) -> Self
fn from(val: LookupSelectors<PolyComm<G>>) -> Self
Converts to this type from the input type.
source§impl<'from_value_lifetime, T> FromValue<'from_value_lifetime> for CamlLookupSelectors<T>where
Option<T>: FromValue<'from_value_lifetime>,
T: FromValue<'from_value_lifetime>,
impl<'from_value_lifetime, T> FromValue<'from_value_lifetime> for CamlLookupSelectors<T>where Option<T>: FromValue<'from_value_lifetime>, T: FromValue<'from_value_lifetime>,
source§fn from_value(value: Value) -> Self
fn from_value(value: Value) -> Self
Convert from OCaml value
source§impl<T> IntoValue for CamlLookupSelectors<T>where
Option<T>: IntoValue,
T: IntoValue,
impl<T> IntoValue for CamlLookupSelectors<T>where Option<T>: IntoValue, T: IntoValue,
source§fn into_value(self, gc: &Runtime) -> Value
fn into_value(self, gc: &Runtime) -> Value
Convert to OCaml value
source§impl<T> OCamlBinding for CamlLookupSelectors<T>where
T: OCamlDesc,
impl<T> OCamlBinding for CamlLookupSelectors<T>where T: OCamlDesc,
source§impl<T> OCamlDesc for CamlLookupSelectors<T>where
T: OCamlDesc,
impl<T> OCamlDesc for CamlLookupSelectors<T>where T: 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<T> RefUnwindSafe for CamlLookupSelectors<T>where T: RefUnwindSafe,
impl<T> Send for CamlLookupSelectors<T>where T: Send,
impl<T> Sync for CamlLookupSelectors<T>where T: Sync,
impl<T> Unpin for CamlLookupSelectors<T>where T: Unpin,
impl<T> UnwindSafe for CamlLookupSelectors<T>where T: 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