(self, pool: &'c Pool)
| 32 | let conn = pool.get().await?; |
| 33 | self.query(&conn).await |
| 34 | } |
| 35 | } |
| 36 | |
| 37 | impl<'c, 's, P> Execute<&'c Pool> for StatementQuery<'s, P> |
| 38 | where |
| 39 | P: AsParams + Send + 'c, |
| 40 | 's: 'c, |
| 41 | { |
| 42 | type ExecuteOutput = u64; |
no test coverage detected