pub trait AutoTypeKey<T: Component>: TypeKey {
    fn new() -> Self;
}
Expand description

A TypeKey which can construct itself for a given type T.

Required methods

Constructs the type key for component type T.

Implementors