This is a small Rust procedural macro that lets you get the name of a type, whether it is an enum or a struct. By simply deriving the trait on your type, you can automatically add a function to return the name of the type.
WARNING: This package is deprecated, because Rust now provides this by
default via std::any::typename
.