pub trait FromRaw: AsRaw {
// Required method
unsafe fn from_raw(handle: <Self as AsRaw>::Raw) -> Self;
}
Expand description
Conversion for the Rust type from the raw MPI handle type.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.