sqlx/sqlx-core/src/postgres/database.rs

17 lines
299 B
Rust

use crate::database::Database;
/// **Postgres** database driver.
pub struct Postgres;
impl Database for Postgres {
type Connection = super::PgConnection;
type Arguments = super::PgArguments;
type Row = super::PgRow;
type TypeInfo = super::PgTypeInfo;
type TableId = u32;
}