sea_orm/dynamic/mod.rs
1//! Runtime-typed entity API for working with schemas that are not known at
2//! compile time.
3//!
4//! Where the rest of SeaORM is statically typed around generated `Entity` /
5//! `Model` / `Column` types, this module exposes an [`Entity`], [`Column`],
6//! and [`Model`] that carry their schema information at runtime.
7//!
8//! **Unstable.** The API in this module may change between minor versions.
9#![allow(missing_docs)]
10
11mod entity;
12mod execute;
13mod model;
14
15pub use entity::*;
16pub use execute::*;
17pub use model::*;