1#![deny(missing_debug_implementations, missing_docs)]
2#![doc(html_root_url = "https://docs.rs/rust_codegen/0.1.0")]
3
4mod associated_type;
28mod block;
29mod body;
30mod bound;
31mod docs;
32mod field;
33mod fields;
34mod formatter;
35mod function;
36mod import;
37mod item;
38mod module;
39mod scope;
40mod type_def;
41mod variant;
42
43mod r#enum;
44mod r#impl;
45mod r#struct;
46mod r#trait;
47mod r#type;
48
49
50pub use associated_type::*;
51pub use block::*;
52pub use field::*;
53pub use formatter::*;
54pub use function::*;
55pub use import::*;
56pub use module::*;
57pub use scope::*;
58pub use variant::*;
59
60pub use r#enum::*;
61pub use r#impl::*;
62pub use r#struct::*;
63pub use r#trait::*;
64pub use r#type::*;