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

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

Required Methods§

source

fn into(self) -> T

Implementors§

source§

impl<T, U> IntoReprC<U> for Twhere U: FromReprC<T>, T: CFFISafe,