async_db: refactor WriterSink::poll_ready
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
3ea4930105
commit
f1d4cf05c5
@ -173,19 +173,9 @@ where
|
|||||||
|
|
||||||
let item = this.item.take().unwrap();
|
let item = this.item.take().unwrap();
|
||||||
|
|
||||||
let fut = this.writer.push(item);
|
let push_fut = this.writer.push(item);
|
||||||
pin_mut!(fut);
|
pin_mut!(push_fut);
|
||||||
match fut.poll(ctx) {
|
push_fut.poll(ctx)
|
||||||
Poll::Ready(Ok(_)) => {
|
|
||||||
*this.item = None;
|
|
||||||
Poll::Ready(Ok(()))
|
|
||||||
}
|
|
||||||
Poll::Ready(Err(e)) => {
|
|
||||||
*this.item = None;
|
|
||||||
Poll::Ready(Err(e))
|
|
||||||
}
|
|
||||||
Poll::Pending => Poll::Pending,
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fn start_send(self: std::pin::Pin<&mut Self>, item: T) -> Result<(), Self::Error> {
|
fn start_send(self: std::pin::Pin<&mut Self>, item: T) -> Result<(), Self::Error> {
|
||||||
|
Loading…
Reference in New Issue
Block a user