[−][src]Trait futures::io::AsyncRead
Read bytes asynchronously.
This trait is analogous to the std::io::Read
trait, but integrates
with the asynchronous task system. In particular, the poll_read
method, unlike Read::read
, will automatically queue the current task
for wakeup and return if data is not yet available, rather than blocking
the calling thread.
Required methods
fn poll_read(
self: Pin<&mut Self>,
cx: &mut Context,
buf: &mut [u8]
) -> Poll<Result<usize, Error>>
self: Pin<&mut Self>,
cx: &mut Context,
buf: &mut [u8]
) -> Poll<Result<usize, Error>>
Attempt to read from the AsyncRead
into buf
.
On success, returns Ok(Poll::Ready(num_bytes_read))
.
If no data is available for reading, the method returns
Ok(Poll::Pending)
and arranges for the current task (via
cx.waker().wake_by_ref()
) to receive a notification when the object becomes
readable or is closed.
Implementation
This function may not return errors of kind WouldBlock
or
Interrupted
. Implementations must convert WouldBlock
into
Poll::Pending
and either internally retry or convert
Interrupted
into another error kind.
Provided methods
unsafe default fn initializer(&self) -> Initializer
Determines if this AsyncRead
er can work with buffers of
uninitialized memory.
The default implementation returns an initializer which will zero buffers.
Safety
This method is unsafe
because and AsyncRead
er could otherwise
return a non-zeroing Initializer
from another AsyncRead
type
without an unsafe
block.
default fn poll_vectored_read(
self: Pin<&mut Self>,
cx: &mut Context,
vec: &mut [&mut IoVec]
) -> Poll<Result<usize, Error>>
self: Pin<&mut Self>,
cx: &mut Context,
vec: &mut [&mut IoVec]
) -> Poll<Result<usize, Error>>
Attempt to read from the AsyncRead
into vec
using vectored
IO operations.
This method is similar to poll_read
, but allows data to be read
into multiple buffers using a single operation.
On success, returns Ok(Poll::Ready(num_bytes_read))
.
If no data is available for reading, the method returns
Ok(Poll::Pending)
and arranges for the current task (via
cx.waker().wake_by_ref()
) to receive a notification when the object becomes
readable or is closed.
By default, this method delegates to using poll_read
on the first
buffer in vec
. Objects which support vectored IO should override
this method.
Implementation
This function may not return errors of kind WouldBlock
or
Interrupted
. Implementations must convert WouldBlock
into
Poll::Pending
and either internally retry or convert
Interrupted
into another error kind.
Implementations on Foreign Types
impl AsyncRead for Repeat
[src]
unsafe fn initializer(&self) -> Initializer
[src]
fn poll_read(
self: Pin<&mut Repeat>,
&mut Context,
buf: &mut [u8]
) -> Poll<Result<usize, Error>>
[src]
self: Pin<&mut Repeat>,
&mut Context,
buf: &mut [u8]
) -> Poll<Result<usize, Error>>
default fn poll_vectored_read(
self: Pin<&mut Self>,
cx: &mut Context,
vec: &mut [&mut IoVec]
) -> Poll<Result<usize, Error>>
[src]
self: Pin<&mut Self>,
cx: &mut Context,
vec: &mut [&mut IoVec]
) -> Poll<Result<usize, Error>>
impl<T> AsyncRead for Cursor<T> where
T: Unpin + AsRef<[u8]>,
[src]
T: Unpin + AsRef<[u8]>,
unsafe fn initializer(&self) -> Initializer
[src]
fn poll_read(
self: Pin<&mut Cursor<T>>,
&mut Context,
buf: &mut [u8]
) -> Poll<Result<usize, Error>>
[src]
self: Pin<&mut Cursor<T>>,
&mut Context,
buf: &mut [u8]
) -> Poll<Result<usize, Error>>
default fn poll_vectored_read(
self: Pin<&mut Self>,
cx: &mut Context,
vec: &mut [&mut IoVec]
) -> Poll<Result<usize, Error>>
[src]
self: Pin<&mut Self>,
cx: &mut Context,
vec: &mut [&mut IoVec]
) -> Poll<Result<usize, Error>>
impl<T> AsyncRead for Box<T> where
T: AsyncRead + Unpin + ?Sized,
[src]
T: AsyncRead + Unpin + ?Sized,
unsafe fn initializer(&self) -> Initializer
[src]
fn poll_read(
self: Pin<&mut Box<T>>,
cx: &mut Context,
buf: &mut [u8]
) -> Poll<Result<usize, Error>>
[src]
self: Pin<&mut Box<T>>,
cx: &mut Context,
buf: &mut [u8]
) -> Poll<Result<usize, Error>>
fn poll_vectored_read(
self: Pin<&mut Box<T>>,
cx: &mut Context,
vec: &mut [&mut IoVec]
) -> Poll<Result<usize, Error>>
[src]
self: Pin<&mut Box<T>>,
cx: &mut Context,
vec: &mut [&mut IoVec]
) -> Poll<Result<usize, Error>>
impl<'a, T> AsyncRead for &'a mut T where
T: AsyncRead + Unpin + ?Sized,
[src]
T: AsyncRead + Unpin + ?Sized,
unsafe fn initializer(&self) -> Initializer
[src]
fn poll_read(
self: Pin<&mut &'a mut T>,
cx: &mut Context,
buf: &mut [u8]
) -> Poll<Result<usize, Error>>
[src]
self: Pin<&mut &'a mut T>,
cx: &mut Context,
buf: &mut [u8]
) -> Poll<Result<usize, Error>>
fn poll_vectored_read(
self: Pin<&mut &'a mut T>,
cx: &mut Context,
vec: &mut [&mut IoVec]
) -> Poll<Result<usize, Error>>
[src]
self: Pin<&mut &'a mut T>,
cx: &mut Context,
vec: &mut [&mut IoVec]
) -> Poll<Result<usize, Error>>
impl<'a> AsyncRead for &'a [u8]
[src]
unsafe fn initializer(&self) -> Initializer
[src]
fn poll_read(
self: Pin<&mut &'a [u8]>,
&mut Context,
buf: &mut [u8]
) -> Poll<Result<usize, Error>>
[src]
self: Pin<&mut &'a [u8]>,
&mut Context,
buf: &mut [u8]
) -> Poll<Result<usize, Error>>
default fn poll_vectored_read(
self: Pin<&mut Self>,
cx: &mut Context,
vec: &mut [&mut IoVec]
) -> Poll<Result<usize, Error>>
[src]
self: Pin<&mut Self>,
cx: &mut Context,
vec: &mut [&mut IoVec]
) -> Poll<Result<usize, Error>>
impl<'a, T> AsyncRead for Pin<&'a mut T> where
T: AsyncRead + ?Sized,
[src]
T: AsyncRead + ?Sized,
unsafe fn initializer(&self) -> Initializer
[src]
fn poll_read(
self: Pin<&mut Pin<&'a mut T>>,
cx: &mut Context,
buf: &mut [u8]
) -> Poll<Result<usize, Error>>
[src]
self: Pin<&mut Pin<&'a mut T>>,
cx: &mut Context,
buf: &mut [u8]
) -> Poll<Result<usize, Error>>
fn poll_vectored_read(
self: Pin<&mut Pin<&'a mut T>>,
cx: &mut Context,
vec: &mut [&mut IoVec]
) -> Poll<Result<usize, Error>>
[src]
self: Pin<&mut Pin<&'a mut T>>,
cx: &mut Context,
vec: &mut [&mut IoVec]
) -> Poll<Result<usize, Error>>
Implementors
impl<R> AsyncRead for Compat01As03<R> where
R: AsyncRead,
[src]
R: AsyncRead,
unsafe fn initializer(&self) -> Initializer
[src]
fn poll_read(
self: Pin<&mut Compat01As03<R>>,
cx: &mut Context,
buf: &mut [u8]
) -> Poll<Result<usize, Error>>
[src]
self: Pin<&mut Compat01As03<R>>,
cx: &mut Context,
buf: &mut [u8]
) -> Poll<Result<usize, Error>>
default fn poll_vectored_read(
self: Pin<&mut Self>,
cx: &mut Context,
vec: &mut [&mut IoVec]
) -> Poll<Result<usize, Error>>
[src]
self: Pin<&mut Self>,
cx: &mut Context,
vec: &mut [&mut IoVec]
) -> Poll<Result<usize, Error>>
impl<R> AsyncRead for ReadHalf<R> where
R: AsyncRead,
[src]
R: AsyncRead,
fn poll_read(
self: Pin<&mut ReadHalf<R>>,
cx: &mut Context,
buf: &mut [u8]
) -> Poll<Result<usize, Error>>
[src]
self: Pin<&mut ReadHalf<R>>,
cx: &mut Context,
buf: &mut [u8]
) -> Poll<Result<usize, Error>>
fn poll_vectored_read(
self: Pin<&mut ReadHalf<R>>,
cx: &mut Context,
vec: &mut [&mut IoVec]
) -> Poll<Result<usize, Error>>
[src]
self: Pin<&mut ReadHalf<R>>,
cx: &mut Context,
vec: &mut [&mut IoVec]
) -> Poll<Result<usize, Error>>
unsafe default fn initializer(&self) -> Initializer
[src]
impl<St> AsyncRead for IntoAsyncRead<St> where
St: TryStream<Error = Error> + Unpin,
<St as TryStream>::Ok: AsRef<[u8]>,
[src]
St: TryStream<Error = Error> + Unpin,
<St as TryStream>::Ok: AsRef<[u8]>,
fn poll_read(
self: Pin<&mut IntoAsyncRead<St>>,
cx: &mut Context,
buf: &mut [u8]
) -> Poll<Result<usize, Error>>
[src]
self: Pin<&mut IntoAsyncRead<St>>,
cx: &mut Context,
buf: &mut [u8]
) -> Poll<Result<usize, Error>>
unsafe default fn initializer(&self) -> Initializer
[src]
default fn poll_vectored_read(
self: Pin<&mut Self>,
cx: &mut Context,
vec: &mut [&mut IoVec]
) -> Poll<Result<usize, Error>>
[src]
self: Pin<&mut Self>,
cx: &mut Context,
vec: &mut [&mut IoVec]
) -> Poll<Result<usize, Error>>
impl<T> AsyncRead for AllowStdIo<T> where
T: Read,
[src]
T: Read,