pub trait IntoReprC {
type ReprC;
// Required method
fn into_c(self) -> Self::ReprC;
}Expand description
Converts a #[repr(Rust)] type into its #[repr(C)] equivalent.
#[repr(Rust)] is the default representation for data types.
pub trait IntoReprC {
type ReprC;
// Required method
fn into_c(self) -> Self::ReprC;
}Converts a #[repr(Rust)] type into its #[repr(C)] equivalent.
#[repr(Rust)] is the default representation for data types.