sqlite-diff-rs 0.2.0

Build SQLite changeset and patchset binary formats programmatically, without SQLite
Documentation
1
2
3
4
5
6
7
//! Schema traits for compile-time and runtime table definitions.
mod dyn_table;
mod simple_table;

pub use dyn_table::IndexableValues;
pub use dyn_table::{DynTable, SchemaWithPK};
pub use simple_table::{NamedColumns, SimpleTable};