(&mut self, notices: Vec<AdapterNotice>)
| 1136 | } |
| 1137 | |
| 1138 | async fn emit_streaming_notices(&mut self, notices: Vec<AdapterNotice>) -> Result<(), Error> { |
| 1139 | forward_notices(self, notices).await |
| 1140 | } |
| 1141 | } |
| 1142 | |
| 1143 | async fn await_rows<S, F, R>(sender: &mut S, client: &mut SessionClient, f: F) -> Result<R, Error> |
no test coverage detected