mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-11-03 06:52:48 +00:00
17 lines
299 B
Rust
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;
|
|
}
|