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§

source

unsafe fn decode(&self) -> Vec<Self::Value>

source

unsafe fn encode(obj: Vec<Self::Value>) -> *mut Self

Object Safety§

This trait is not object safe.

Implementors§