pub trait Type: TypeInfo + 'static {
// Provided methods
fn is_unit() -> bool { ... }
fn meta_type() -> MetaType { ... }
fn register(registry: &mut Registry) -> Option<u32> { ... }
}
Expand description
Trait used to get information about types.
Provided Methods§
Object Safety§
This trait is not object safe.