constructivist 0.3.0

Simplify the construction of structured data.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod context;
pub mod derive;
pub mod exts;
pub mod genlib;
pub mod proc;
pub mod throw;

pub mod prelude {
    pub use crate::context::Context;
    pub use crate::derive::{DeriveConstruct, DeriveSegment};
    pub use crate::genlib;
    pub use crate::proc::{Construct, Prop, Ref};
    pub use constructivism_macro_gen::implement_constructivism_macro;
}