pub trait IntoReprRust<T> {
    // Required method
    fn into(self) -> T;
}
Expand description

impl IntoReprRust<Foo> for Bar -> means from Rust Foo type into C Bar repr

Required Methods§

source

fn into(self) -> T

Implementors§

source§

impl<T, U> IntoReprRust<U> for Twhere U: FromReprRust<T>, T: CFFISafe,