Function tokio_core::io::read
[−]
[src]
pub fn read<R, T>(rd: R, buf: T) -> Read<R, T> where
R: Read,
T: AsMut<[u8]>,
Deprecated
: moved to the tokio-io
crate
Tries to read some bytes directly into the given buf
in asynchronous
manner, returning a future type.
The returned future will resolve to both the I/O stream and the buffer as well as the number of bytes read once the read operation is completed.