moogle 0.4.4

data structures for relational code
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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 one_to_one::RawOneToOne;
pub use one_to_many::RawOneToMany;
pub use many_to_one::RawManyToOne;
pub use many_to_many::RawManyToMany;

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