Type Definition ocaml::OCamlRef

source · []
pub type OCamlRef<'a, T> = &'a OCamlCell<T>;
Expand description

An OCamlRef<T> is a reference to a location containing a OCaml<T> value.

Usually obtained as the result of rooting an OCaml value.

Trait Implementations

Convert to OCaml value