use std::{io, task};
pub trait AsyncReadReady {
fn poll_read_ready(&self, cx: &mut task::Context<'_>) -> task::Poll<io::Result<()>>;
}
impl AsyncReadReady for tokio::net::TcpStream {
fn poll_read_ready(&self, cx: &mut task::Context<'_>) -> task::Poll<io::Result<()>> {
tokio::net::TcpStream::poll_read_ready(self, cx)
}
}