pub trait ExtTypeName { // Required method fn type_name(&self) -> &str where Self: Sized; }
Trait to retrieve the string value (i.e. name) of a type.
Credits: https://stackoverflow.com/a/56100816/10237506
Retrieve the string value of a type.