[][src]Trait typeable::Typeable

pub trait Typeable: Any {
    fn get_type(&self) -> TypeId { ... }
}

Universal mixin trait for adding a get_type method.

Provided Methods

Get the TypeId of this object.

Implementors

impl<T: Any> Typeable for T
[src]