1 2 3 4 5 6 7 8 9 10 11 12 13 14
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; } impl_into_arguments_for_database!(Postgres);