Skip to main content

icydb_core/model/
mod.rs

1//! Runtime data model definitions.
2//!
3//! This module contains the *runtime representations* of schema-level concepts,
4//! as opposed to their declarative or macro-time forms. Types in `model` are
5//! instantiated and used directly by query planning, executors, and storage
6//! layers.
7//!
8//! Currently this includes index-related models, but the module is intended to
9//! grow to encompass additional runtime schema nodes (e.g. entities, fields,
10//! or constraints) as IcyDB’s internal model is made more explicit.
11//!
12//! In general:
13//! - Schema / macro code defines *what exists*
14//! - `model` defines *what runs*
15pub mod entity;
16pub mod field;
17pub mod index;