use sqlx_core::{Database, HasOutput, Runtime}; #[derive(Debug)] pub struct Postgres; impl Database for Postgres where Rt: Runtime, { type Connection = super::PostgresConnection; } impl<'x> HasOutput<'x> for Postgres { type Output = &'x mut Vec; }