enum_ext 0.6.0

procedural macro that enhances enums with additional methods and conversions
Documentation
1
2
3
4
5
6
7
8
use enum_ext::enum_extend;

#[enum_extend]
pub struct NotAnEnum {
    x: i32,
}

fn main() {}