proc_macro_helper 0.3.0

Procedural macros helper
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[macro_use]
extern crate quote;
extern crate syn;

mod attribute;
mod enum_;
mod field;
mod struct_;
mod variant;

pub mod prelude {
    pub use attribute::Attribute;
    pub use enum_::Enum;
    pub use field::Field;
    pub use struct_::Struct;
    pub use variant::Variant;
}