pub trait IntoRaw<Raw, Target> {
// Required method
fn into_raw(target: Target) -> Raw;
}
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.
Implementors§
impl<T, Raw, Target> IntoRaw<Raw, Target> for Twhere
Target: Into<Raw>,
Blanket impl of IntoRaw for any type that has Into