1 2 3 4 5 6 7 8 9 10
//! Query execution traits and row-mapping types. //! //! Defines [`QueryExecutor`] for async database operations and //! [`FromRow`] for converting result rows into Rust structs. mod executor; mod row; pub use executor::*; pub use row::*;