pub trait IntoFFIValue: RIType {
    fn into_ffi_value(
        self,
        context: &mut dyn FunctionContext
    ) -> Result<Self::FFIType>; }
Expand description

Something that can be converted into a ffi value.

Required methods

Convert self into a ffi value.

Implementations on Foreign Types

Implementors