(inner: SqlResult)
| 565 | |
| 566 | impl From<SqlResult> for StatementResult { |
| 567 | fn from(inner: SqlResult) -> Self { |
| 568 | Self::SqlResult(inner) |
| 569 | } |
| 570 | } |
| 571 | |
| 572 | /// The result of a single query in a [`SqlResponse`]. |
nothing calls this directly
no test coverage detected