enum-helper 0.2.0

Yet another enum helper. Macros that generate common boilerplate for enums.
Documentation
1
2
3
4
5
6
7
error: EnumStr only supports unit enum by default, use #[enum_str(default)] or #[enum_str(skip)] to opt-in non-unit enum support, or using EnumKind to generate unit enum
 --> tests/ui/enum_str_non_unit_enum.rs:3:10
  |
3 | #[derive(EnumStr)]
  |          ^^^^^^^
  |
  = note: this error originates in the derive macro `EnumStr` (in Nightly builds, run with -Z macro-backtrace for more info)