sea-orm 2.0.0-rc.41

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

mod entity;
mod execute;
mod model;

pub use entity::*;
pub use execute::*;
pub use model::*;