Trait abi_stable::traits::IntoReprRust[][src]

pub trait IntoReprRust {
    type ReprRust;
    fn into_rust(self) -> Self::ReprRust;
}
Expand description

Converts a #[repr(C)] type into its #[repr(Rust)] equivalent.

#[repr(Rust)] is the default representation for data types.

Associated Types

The #[repr(Rust)] equivalent.

Required methods

Performs the conversion

Implementors