1
2
3
4
5
6
7
8
9
10
//! Structures that are used to construct other, more complicated types.
//! Generally zero-cost abstractions.

mod class;
mod function;
mod module;

pub use class::ClassBuilder;
pub use function::FunctionBuilder;
pub use module::ModuleBuilder;