sql_middleware/postgres/typed/mod.rs
1//! Experimental bb8-backed Postgres typestate API.
2//! Provides `PgConnection<Idle>` / `PgConnection<InTx>` using an owned client
3//! and explicit BEGIN/COMMIT/ROLLBACK.
4
5mod core;
6mod dml;
7mod prepared;
8mod select;
9mod tx;
10
11pub use core::{Idle, InTx, PgConnection, PgManager};
12pub use dml::dml;
13pub use select::select;
14pub use tx::set_skip_drop_rollback_for_tests;