AsyncBufRead

Trait AsyncBufRead 

Source
pub trait AsyncBufRead: for<'a> AsyncBufReadWith<'a> { }
Expand description

Read bytes from a source that has an internal buffer asynchronously.

This is an asynchronous version of std::io::BufRead.

You should not implement this trait manually, instead implement AsyncBufReadWith.

Implementors§

Source§

impl<T: for<'a> AsyncBufReadWith<'a> + ?Sized> AsyncBufRead for T