pub trait FFIFromRust {
    type From;

    unsafe fn from_rust(from: &Self::From) -> Self;
}

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors