Trait ferment_interfaces::FFIVecConversion
source · pub trait FFIVecConversion {
type Value;
// Required methods
unsafe fn decode(&self) -> Vec<Self::Value>;
unsafe fn encode(obj: Vec<Self::Value>) -> *mut Self;
}Required Associated Types§
Required Methods§
unsafe fn decode(&self) -> Vec<Self::Value>
unsafe fn encode(obj: Vec<Self::Value>) -> *mut Self
Object Safety§
This trait is not object safe.