use std::io; use std::net::SocketAddr; use std::pin::Pin; use std::task::{Context, Poll}; use hyper::server::conn::AddrStream; use tokio::io::{AsyncRead, AsyncWrite, ReadBuf}; pub trait Transport: AsyncRead + AsyncWrite { fn remote_addr(&self) -> Option; } impl Transport for AddrStream { fn remote_addr(&self) -> Option { Some(self.remote_addr()) } } pub(crate) struct LiftIo(pub(crate) T); impl AsyncRead for LiftIo { fn poll_read( self: Pin<&mut Self>, cx: &mut Context<'_>, buf: &mut ReadBuf<'_>, ) -> Poll> { Pin::new(&mut self.get_mut().0).poll_read(cx, buf) } } impl AsyncWrite for LiftIo { fn poll_write( self: Pin<&mut Self>, cx: &mut Context<'_>, buf: &[u8], ) -> Poll> { Pin::new(&mut self.get_mut().0).poll_write(cx, buf) } fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll> { Pin::new(&mut self.get_mut().0).poll_flush(cx) } fn poll_shutdown(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll> { Pin::new(&mut self.get_mut().0).poll_shutdown(cx) } } impl Transport for LiftIo { fn remote_addr(&self) -> Option { None } }