pub trait HasStaticTypeName {
    fn type_name() -> &'static CStr;
}
Expand description

A trait that defines that for a type we can statically return a type name.

Required Methods§

Returns a reference to the TypeInfo for the type

Implementors§