enum-helper 0.3.1

Yet another enum helper. Macros that generate common boilerplate for enums.
Documentation
1
2
3
4
5
6
7
8
error[E0599]: no variant or associated item named `COUNT` found for enum `Foo` in the current scope
 --> tests/ui/enum_all_count_disable_absence.rs:9:18
  |
4 | enum Foo {
  | -------- variant or associated item `COUNT` not found for this enum
...
9 |     let _ = Foo::COUNT;
  |                  ^^^^^ variant or associated item not found in `Foo`