mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
clippy
This commit is contained in:
parent
68def82d90
commit
7ce1927566
13 changed files with 21 additions and 18 deletions
|
@ -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)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue