This crate provides a macro to create a unitary enum and conversions from enum variants to a string representation and vice versa.
The string representation does not need to be the same as the enum variant's identifier. See the example below for clarification.
```rust
use std::str::FromStr; use enum_str::{Error, AsStr};
fn main() { enumstr! { Fruit, (Apple, "🍎"), (Pineapple, "🍍"), (Strawberry, "🍓"), } asserteq!("🍎", Fruit::Apple.asstr()); asserteq!(Fruit::Apple, Fruit::from_str("🍎").unwrap()); } ```