[][src]Trait ocaml_interop::IntoRust

pub trait IntoRust<T>: Sized {
    fn into_rust(self) -> T;
}

Counterpart to FromOCaml, usually more comfortable to use.

Required methods

fn into_rust(self) -> T

Convert into a Rust value.

Loading content...

Implementors

impl<'a, T, U> IntoRust<U> for OCaml<'a, T> where
    U: FromOCaml<T>, 
[src]

Loading content...