enumizer 0.1.2

simple macros for generating enums that are equivalent and convertible to standard library enums
Documentation
1
2
3
4
5
6
7
//! This crate provides easy to use macros, that allow the user to create enum types that are equivalent and convertible to standard library enum types, with custom variant names.
//!
//! See the `examples` module for examples of the generated types.
mod either;
pub mod examples;
mod option;
mod result;