roopert_macro_common 0.2.0

Another object-oriented toolkit for Rust (common data)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Attributes and functionality used in all roopert macros
mod accessors_attribute;
mod extends_attribute;
mod generate_trait;
mod getter_attribute;
mod parent_attribute;
mod root_attribute;
mod setter_attribute;

pub mod parse;

pub use accessors_attribute::AccessorsAttribute;
pub use extends_attribute::ExtendsAttribute;
pub use generate_trait::Generate;
pub use getter_attribute::GetterAttribute;
pub use parent_attribute::ParentAttribute;
pub use root_attribute::{RoopertAttribute, RoopertAttributeType};
pub use setter_attribute::SetterAttribute;