This commit is contained in:
Nikolay Kim 2022-10-03 10:21:08 +02:00
parent 68def82d90
commit 7ce1927566
13 changed files with 21 additions and 18 deletions

View file

@ -438,11 +438,11 @@ impl AsyncWrite for TokioIoBoxed {
}
fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<()>> {
(*self.as_ref()).0.poll_flush(cx, false)
self.as_ref().0.poll_flush(cx, false)
}
fn poll_shutdown(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<()>> {
(*self.as_ref()).0.poll_shutdown(cx)
self.as_ref().0.poll_shutdown(cx)
}
}