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> Freeze for CamlPlonkDomain<Fr>where
Fr: Freeze,
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