Trait abi_stable::traits::IntoReprRust
source · pub trait IntoReprRust {
type ReprRust;
// Required method
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.