Trait async_http_codec::internal::io_future::IoFutureState
source · pub trait IoFutureState<IO: Sized + Unpin>: Sized + Unpin {
// Required method
fn poll(&mut self, cx: &mut Context<'_>, io: &mut IO) -> Poll<Result<()>>;
// Provided method
fn into_future(self, io: IO) -> IoFuture<Self, IO> ⓘ { ... }
}