Skip to main content

sqlite_diff_rs/
schema.rs

1//! Schema traits for compile-time and runtime table definitions.
2mod dyn_table;
3mod simple_table;
4
5pub use dyn_table::IndexableValues;
6pub use dyn_table::{DynTable, SchemaWithPK};
7pub use simple_table::{NamedColumns, SimpleTable};