pub trait TypeName { // Required method fn type_name(&self) -> &'static str; }
A trait for types that have a name that can be included in log messages.
Returns the name of the type as a string.