(pool: PgPool)
| 38 | |
| 39 | impl From<PgPool> for SqlxPostgresPoolConnection { |
| 40 | fn from(pool: PgPool) -> Self { |
| 41 | SqlxPostgresPoolConnection { |
| 42 | pool, |
| 43 | metric_callback: None, |
| 44 | } |
| 45 | } |
| 46 | } |
| 47 | |
| 48 | impl From<PgPool> for DatabaseConnection { |
nothing calls this directly
no test coverage detected