mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-10-02 15:25:32 +00:00
Implemented poll_flush for Box<S:Socket> (#2742)
This commit is contained in:
parent
2e4533eb32
commit
4d12ca4e1d
@ -173,6 +173,10 @@ impl<S: Socket + ?Sized> Socket for Box<S> {
|
||||
(**self).poll_write_ready(cx)
|
||||
}
|
||||
|
||||
fn poll_flush(&mut self, cx: &mut Context<'_>) -> Poll<io::Result<()>> {
|
||||
(**self).poll_flush(cx)
|
||||
}
|
||||
|
||||
fn poll_shutdown(&mut self, cx: &mut Context<'_>) -> Poll<io::Result<()>> {
|
||||
(**self).poll_shutdown(cx)
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user