Function poll_read_buf
fn poll_read_buf<T: AsyncRead + ?Sized, B: BufMut>(io: Pin<&mut T>, cx: &mut Context<'_>, buf: &mut B) -> Poll<Result<usize>>
Try to read data from an AsyncRead into an implementer of the BufMut trait.
Example
use ;
use tokio_stream as stream;
use Result;
use ;
use poll_fn;
use Pin;
#
# async