pub trait HasStaticTypeId {
    fn type_id() -> &'static TypeId<'static>;
}
Expand description

A trait that defines that for a type we can statically return a TypeId.

Required Methods§

Returns a reference to the TypeInfo for the type

Implementations on Foreign Types§

Implementors§