[][src]Trait ffi_support::IntoFfiJsonTag

pub trait IntoFfiJsonTag: IntoFfi { }

This is a marker trait that allows us to know when it's okay to implement IntoFfi for Vec<T> (and potentially things like HashMap<String, T> in the future) by serializing it to JSON. It's automatically implemented as part of implement_into_ffi_by_json!, and you probably don't need to implement it manually.

Implementations on Foreign Types

impl<T: IntoFfi + IntoFfiJsonTag + Serialize> IntoFfiJsonTag for Vec<T>[src]

Loading content...

Implementors

Loading content...