1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-06-25 22:49:21 +02:00

Run rustfmt

This commit is contained in:
Yuki Okushi
2020-03-08 00:52:39 +09:00
parent 7941594f94
commit 0d5646a8b6
2 changed files with 7 additions and 6 deletions

View File

@ -395,7 +395,8 @@ where
Poll::Ready(Ok(req)) => {
self.as_mut().send_continue();
this = self.as_mut().project();
this.state.set(State::ServiceCall(Box::pin(this.service.call(req))));
this.state
.set(State::ServiceCall(Box::pin(this.service.call(req))));
continue;
}
Poll::Ready(Err(e)) => {