spire_enum_macros 0.1.0

Procedural macros to facilitate enum usage, such as when delegating implementations and/or generating variant types.
Documentation
1
2
3
4
5
6
7
8
9
10
use super::*;

mod attribute;
mod generics;
mod optional;

pub use Optional::{_None, _Some};
pub use attribute::*;
pub use generics::*;
pub use optional::*;