Refactor pipeline call impl (#219)

* Refactor pipeline call impl
This commit is contained in:
Nikolay Kim 2023-08-10 22:10:02 +06:00 committed by GitHub
parent 2e66b4b361
commit 594bf0a8e2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
25 changed files with 217 additions and 110 deletions

View file

@ -128,7 +128,7 @@ impl Future for WriteTask {
type Output = ();
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
let mut this = self.as_mut().get_mut();
let this = self.as_mut().get_mut();
match this.st {
IoWriteState::Processing(ref mut delay) => {
@ -523,7 +523,7 @@ mod unixstream {
type Output = ();
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
let mut this = self.as_mut().get_mut();
let this = self.as_mut().get_mut();
match this.st {
IoWriteState::Processing(ref mut delay) => {