Type Definition ocaml::OCamlRef[][src]

type OCamlRef<'a, T> = &'a OCamlCell<T>;

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

impl<'a, T> IntoValue for OCamlRef<'a, T>[src]

fn into_value(self, _rt: &Runtime) -> Value[src]

Convert to OCaml value