(self: Pin<&mut Self>, _cx: &mut TaskContext<'_>)
| 137 | } |
| 138 | |
| 139 | fn poll_flush(self: Pin<&mut Self>, _cx: &mut TaskContext<'_>) -> Poll<io::Result<()>> { |
| 140 | Poll::Ready(Ok(())) |
| 141 | } |
| 142 | |
| 143 | fn poll_shutdown(self: Pin<&mut Self>, _cx: &mut TaskContext<'_>) -> Poll<io::Result<()>> { |
| 144 | Poll::Ready(Ok(())) |