moogle 0.4.4

data structures for relational code
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod debug_impl;

pub mod one_to_one;
pub mod one_to_many;
pub mod many_to_one;
pub mod many_to_many;

// pub use ...
pub use one_to_one::OneToOne;
pub use one_to_many::OneToMany;
pub use many_to_one::ManyToOne;
pub use many_to_many::ManyToMany;

#[cfg(feature="serde1")]
mod serde_impl;