mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-12-30 05:11:13 +00:00
14 lines
349 B
Rust
14 lines
349 B
Rust
use crate::backend::Backend;
|
|
|
|
#[derive(Debug)]
|
|
pub struct Postgres;
|
|
|
|
impl Backend for Postgres {
|
|
type QueryParameters = super::PostgresQueryParameters;
|
|
type RawConnection = super::PostgresRawConnection;
|
|
type Row = super::PostgresRow;
|
|
}
|
|
|
|
impl_from_sql_row_tuples_for_backend!(Postgres);
|
|
impl_into_query_parameters_for_backend!(Postgres);
|