mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-12-30 13:20:59 +00:00
20 lines
397 B
Rust
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;
|