Trait completion::io::AsyncRead[][src]

pub trait AsyncRead: for<'a> AsyncReadWith<'a> { }
This is supported on crate feature std only.

Read bytes from a source asynchronously.

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

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

Implementors

impl<T> AsyncRead for T where
    T: for<'a> AsyncReadWith<'a> + ?Sized
[src]

Loading content...