sqlx/sqlx-core/src/blocking.rs
Ryan Leckey 8203410e3f
reactor(core): remove Rt param from Database trait and remove Connection associated type
- significantly cleans up the sqlx/ zero-prelude wrapping
2021-02-18 23:46:05 -08:00

20 lines
397 B
Rust

//! Types and traits used to interact with a database driver
//! for **blocking** operations.
//!
mod acquire;
mod close;
mod connect;
mod connection;
mod executor;
mod options;
pub(crate) mod runtime;
pub use acquire::Acquire;
pub use close::Close;
pub use connect::Connect;
pub use connection::Connection;
pub use executor::Executor;
pub use options::ConnectOptions;
pub use runtime::Runtime;