pub trait Typeable: Any { // Provided method fn get_type(&self) -> TypeId { ... } }
Universal mixin trait for adding a get_type method.
get_type
Get the TypeId of this object.
TypeId