Trait IntoReprRust
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.
Required Associated Types§
type ReprRust
type ReprRust
The #[repr(Rust)] equivalent.