FromType

Trait FromType 

Source
pub trait FromType<T> {
    // Required method
    fn from_type() -> Self;
}
Expand description

Trait used to generate TypeData for trait reflection.

This is used by the #[derive(Reflect)] macro to generate an implementation of TypeData to pass to TypeRegistration::insert.

Required Methods§

Source

fn from_type() -> Self

Creates an instance of Self for type T.

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§