pub trait StaticTypeSized<'a>: 'a {
    type Static: 'static;
    fn type_id(&self) -> TypeId { ... }
}

Associated Types

Provided methods

Implementations on Foreign Types

Implementors