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