[][src]Struct ocaml_interop::OCamlList

pub struct OCamlList<A> { /* fields omitted */ }

OCaml<OCamlList<T>> is a reference to an OCaml list containing values of type T.

Trait Implementations

impl<A, OCamlA> FromOCaml<OCamlList<OCamlA>> for Vec<A> where
    A: FromOCaml<OCamlA>, 
[src]

impl<A, OCamlA> ToOCaml<OCamlList<OCamlA>> for Vec<A> where
    A: ToOCaml<OCamlA>, 
[src]

impl<A, OCamlA> ToOCaml<OCamlList<OCamlA>> for &Vec<A> where
    A: ToOCaml<OCamlA>, 
[src]

Auto Trait Implementations

impl<A> RefUnwindSafe for OCamlList<A> where
    A: RefUnwindSafe
[src]

impl<A> Send for OCamlList<A> where
    A: Send
[src]

impl<A> Sync for OCamlList<A> where
    A: Sync
[src]

impl<A> Unpin for OCamlList<A> where
    A: Unpin
[src]

impl<A> UnwindSafe for OCamlList<A> where
    A: UnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.