enum-helper 0.3.0

Yet another enum helper. Macros that generate common boilerplate for enums.
Documentation
1
2
3
4
5
6
7
#[derive(enum_helper::EnumAll)]
#[enum_all(all(bogus))]
enum Foo {
    Bar,
}

fn main() {}