(
self: Pin<&mut Self>,
_cx: &mut TaskContext<'_>,
)
| 196 | } |
| 197 | |
| 198 | fn poll_write_ready( |
| 199 | self: Pin<&mut Self>, |
| 200 | _cx: &mut TaskContext<'_>, |
| 201 | ) -> Poll<io::Result<usize>> { |
| 202 | Poll::Ready(Ok(self.limit)) |
| 203 | } |
| 204 | } |
| 205 | const BACKEND_C_TIMINGS: &[(i32, &str)] = &[ |
| 206 | (1, "postgres.backend.c.main_pre"), |