Trait completion_io::AsyncBufRead[][src]

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

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

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

Loading content...