Skip to main content

IntoTypeRef

Trait IntoTypeRef 

Source
pub trait IntoTypeRef: Into<TypeRef> {
    // Required method
    fn into_type_ref(self) -> TypeRef;
}

Required Methods§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<T> IntoTypeRef for T
where T: Into<TypeRef>,