Derive macro to get the name of a struct or enum.
```rust use derive_name::Name;
struct Alice;
enum Bob {}
asserteq!(Alice::name(), "Alice"); asserteq!(Bob::name(), "Bob"); ```
Named
```rust use derive_name::Named;
struct Alice;
enum Bob { Variant }
let her = Alice {}; let his = Bob::Variant;
asserteq!(her.name(), "Alice"); asserteq!(his.name(), "Bob"); ```
If you think you found a bug: open a issue. Feature request are also welcome.
This library is distributed under the terms of the ISC License.
Find an easy explanation on choosealicense.com/licenses/isc.