(self, cli: &Client)
| 29 | impl Execute<&Client> for &str { |
| 30 | type ExecuteOutput = u64; |
| 31 | type QueryOutput = RowSimpleStream; |
| 32 | |
| 33 | #[inline] |
| 34 | async fn execute(self, cli: &Client) -> Result<Self::ExecuteOutput, Error> { |
| 35 | self.query(cli).await.map(RowAffected::from)?.await |
| 36 | } |
no test coverage detected