IntoTypeRef

Trait IntoTypeRef 

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", so this trait is not object safe.

Implementors§

§

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