Set of macros (only one for now) to generate a string representation of an enum. When using
#[derive(EnumStringify)]
on an enum, it will implement std::fmt::Display
, TryFrom<&str>
,
TryFrom<String>
and std::str::FromStr
for it. It will use the name of the enum variant as the
string representation.
```rust use enum_stringify::EnumStringify;
enum MyEnum { Variant1, Variant2, Variant3, }
fn main() { println!("{}", MyEnum::Variant1); // Prints "Variant1" asserteq!(MyEnum::Variant1.tostring(), "Variant1"); asserteq!(MyEnum::tryfrom("Variant2").unwrap(), MyEnum::Variant2); asserteq!(MyEnum::tryfrom("Variant3".tostring()).unwrap(), MyEnum::Variant3); asserteq!(MyEnum::from_str("Variant1").unwrap(), MyEnum::Variant1); } ```
See docs.rs for documentation. It is available on crates.io as well.