pub struct CamlPlonkDomain<Fr> {
pub log_size_of_group: Int,
pub group_gen: Fr,
}
Fields§
§log_size_of_group: Int
§group_gen: Fr
Trait Implementations§
source§impl<'from_value_lifetime, Fr> FromValue<'from_value_lifetime> for CamlPlonkDomain<Fr>where
Fr: FromValue<'from_value_lifetime>,
impl<'from_value_lifetime, Fr> FromValue<'from_value_lifetime> for CamlPlonkDomain<Fr>where Fr: FromValue<'from_value_lifetime>,
source§fn from_value(value: Value) -> Self
fn from_value(value: Value) -> Self
Convert from OCaml value
source§impl<Fr> IntoValue for CamlPlonkDomain<Fr>where
Fr: IntoValue,
impl<Fr> IntoValue for CamlPlonkDomain<Fr>where Fr: IntoValue,
source§fn into_value(self, gc: &Runtime) -> Value
fn into_value(self, gc: &Runtime) -> Value
Convert to OCaml value
source§impl<Fr> OCamlBinding for CamlPlonkDomain<Fr>where
Fr: OCamlDesc,
impl<Fr> OCamlBinding for CamlPlonkDomain<Fr>where Fr: OCamlDesc,
source§impl<Fr> OCamlDesc for CamlPlonkDomain<Fr>where
Fr: OCamlDesc,
impl<Fr> OCamlDesc for CamlPlonkDomain<Fr>where Fr: 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<Fr> RefUnwindSafe for CamlPlonkDomain<Fr>where Fr: RefUnwindSafe,
impl<Fr> Send for CamlPlonkDomain<Fr>where Fr: Send,
impl<Fr> Sync for CamlPlonkDomain<Fr>where Fr: Sync,
impl<Fr> Unpin for CamlPlonkDomain<Fr>where Fr: Unpin,
impl<Fr> UnwindSafe for CamlPlonkDomain<Fr>where Fr: 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