sqlw 0.1.0

Compile-time SQL query building with schema-safe field references and automatic parameter binding
Documentation
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::*;