pub trait FFIVecConversion {
type Value: IntoIterator;
// Required methods
unsafe fn decode(&self) -> Self::Value;
unsafe fn encode(obj: Self::Value) -> *mut Self;
}Required Associated Types§
type Value: IntoIterator
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.