a3s-orm 0.2.1

A type-safe, executor-neutral SQL query builder for Rust
Documentation
mod error;
mod executor;
mod metrics;
mod migration;
mod options;
mod parameters;
mod row;
mod tls;
mod transaction;

pub use error::{
    PostgresError, PostgresMigrationError, PostgresRetryClass, PostgresTransactionError,
};
pub use executor::PostgresExecutor;
pub use metrics::{PostgresPoolHealth, PostgresPoolMetricsSnapshot, PostgresPoolStatus};
pub use options::{
    PostgresIsolationLevel, PostgresMigrationOptions, PostgresOptionsError, PostgresPoolOptions,
    PostgresTransactionAccessMode, PostgresTransactionOptions,
};
pub use row::PostgresRow;
pub use tls::{PostgresTlsError, PostgresTlsOptions};
pub use transaction::PostgresTransaction;