//! Exposes `Typeable`, which exposes the `get_type` method, which gives
//! the `TypeId` of any 'static type.
use TypeId;
/// Universal mixin trait for adding a `get_type` method.
///
// FIXME: Remove the `Sized` bound here, it should be unnecessary.
// Tracking: rust-lang/rust#20492