sqlx/src/postgres/backend.rs
Ryan Leckey cbd56f3fa9 Update MariaDbRawQuery to be MariaDbQueryParameters
Also coment out module imports for build failures so we get a green build to work on
2019-08-29 00:26:37 -07:00

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);