Provide Derive Macro for Plain Enum
derive EnumStr
can impl Some Traits about str
and String
pub const as_str(&self) -> &'static str
AsRef<str>
ToString
From<&str>
From<&String>
From<String>
From<Str>
Maybe Panic!!!
```rust use enumex::EnumStr;
enum Animal { Cat, Dog, } ```