pub trait IntoFfiJsonTag: IntoFfi { }
Expand description

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

Implementors