Trait named_type::NamedType [] [src]

pub trait NamedType {
    fn type_name() -> &'static str;
    fn short_type_name() -> &'static str;
}

A trait for getting the name of a type

Required Methods

Returns the canonical name with the fully qualified module name for the given type

Returns a user-friendly short name for the given type

Implementors