1 2 3 4 5 6 7 8 9 10 11 12
//! Immutable schema: interners, attribute types, slot layout. pub mod attr; pub mod builder; pub mod interner; pub mod layout; #[allow(clippy::module_inception)] pub mod schema; pub use attr::{AttrType, OwnedValue, Value}; pub use builder::SchemaBuilder; pub use schema::Schema;