pub trait IntoTypeRef: Into<TypeRef> {
// Required method
fn into_type_ref(self) -> TypeRef;
}
Required Methods§
fn into_type_ref(self) -> TypeRef
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.