Trait abi_stable::traits::IntoReprC
source · 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.