pub trait ReprC {
type C;
type Error;
// Required method
unsafe fn clone_from_repr_c(repr_c: Self::C) -> Result<Self, Self::Error>
where Self: Sized;
}Expand description
Trait to convert between FFI and Rust representations of types.