pub struct CamlRuntimeTableSpec {
    pub id: i32,
    pub len: usize,
}Fields§
§id: i32§len: usizeTrait Implementations§
Source§impl From<CamlRuntimeTableSpec> for RuntimeTableSpec
 
impl From<CamlRuntimeTableSpec> for RuntimeTableSpec
Source§fn from(caml_rt_spec: CamlRuntimeTableSpec) -> Self
 
fn from(caml_rt_spec: CamlRuntimeTableSpec) -> Self
Converts to this type from the input type.
Source§impl From<RuntimeTableSpec> for CamlRuntimeTableSpec
 
impl From<RuntimeTableSpec> for CamlRuntimeTableSpec
Source§fn from(rt_spec: RuntimeTableSpec) -> Self
 
fn from(rt_spec: RuntimeTableSpec) -> Self
Converts to this type from the input type.
Source§impl<'from_value_lifetime> FromValue<'from_value_lifetime> for CamlRuntimeTableSpec
 
impl<'from_value_lifetime> FromValue<'from_value_lifetime> for CamlRuntimeTableSpec
Source§fn from_value(value: Value) -> Self
 
fn from_value(value: Value) -> Self
Convert from OCaml value
Source§impl IntoValue for CamlRuntimeTableSpec
 
impl IntoValue for CamlRuntimeTableSpec
Source§fn into_value(self, gc: &Runtime) -> Value
 
fn into_value(self, gc: &Runtime) -> Value
Convert to OCaml value
Source§impl OCamlBinding for CamlRuntimeTableSpec
 
impl OCamlBinding for CamlRuntimeTableSpec
Source§impl OCamlDesc for CamlRuntimeTableSpec
 
impl OCamlDesc for CamlRuntimeTableSpec
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 Freeze for CamlRuntimeTableSpec
impl RefUnwindSafe for CamlRuntimeTableSpec
impl Send for CamlRuntimeTableSpec
impl Sync for CamlRuntimeTableSpec
impl Unpin for CamlRuntimeTableSpec
impl UnwindSafe for CamlRuntimeTableSpec
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