pub trait IntoRawDescriptor {
// Required method
fn into_raw_descriptor(self) -> RawDescriptor;
}Expand description
Trait for forfeiting ownership of the current raw descriptor, and returning the raw descriptor
Required Methods§
fn into_raw_descriptor(self) -> RawDescriptor
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".