sqlite_diff_rs/
builders.rs1mod change;
4mod delete_operation;
5mod format;
6mod insert_operation;
7mod operation;
8pub mod sql;
9mod sql_output;
10mod update_operation;
11mod view;
12
13pub use change::{ChangeSet, DiffOps, DiffSet, DiffSetBuilder, PatchSet};
14pub use delete_operation::{ChangeDelete, PatchDelete};
15pub use format::{ChangesetFormat, PatchsetFormat};
16pub use insert_operation::Insert;
17pub(crate) use operation::Operation;
18pub use operation::{Indirect, Reverse};
19pub use sql_output::ColumnNames;
20pub use update_operation::Update;
21pub use view::{ChangesetOp, ChangesetUpdatePair, PatchsetOp, PatchsetUpdateEntry};