moogle 0.4.4

data structures for relational code
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// NOTE: Don't expose the eviction code from the internal_structures
// Otherwise, be roughly the same!

mod debug_impl;

pub mod set;
pub mod to_one;
pub mod to_many;

pub use set::RawSet;
pub use to_one::RawToOne;
pub use to_many::RawToMany;

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