| 26 | /// Defines a sqlx PostgreSQL pool |
| 27 | #[derive(Clone)] |
| 28 | pub struct SqlxPostgresPoolConnection { |
| 29 | pub(crate) pool: PgPool, |
| 30 | metric_callback: Option<crate::metric::Callback>, |
| 31 | } |
| 32 | |
| 33 | impl std::fmt::Debug for SqlxPostgresPoolConnection { |
| 34 | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { |
no outgoing calls
no test coverage detected