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