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