Struct futures_util::io::ReadHalf[][src]

pub struct ReadHalf<T> { /* fields omitted */ }

The readable half of an object returned from AsyncRead::split.

Trait Implementations

impl<T: Debug> Debug for ReadHalf<T>
[src]

Formats the value using the given formatter. Read more

impl<T: AsyncRead> AsyncRead for ReadHalf<T>
[src]

Attempt to read from the AsyncRead into buf. Read more

Attempt to read from the AsyncRead into vec using vectored IO operations. Read more

Determines if this AsyncReader can work with buffers of uninitialized memory. Read more

Auto Trait Implementations

impl<T> Send for ReadHalf<T> where
    T: Send

impl<T> Sync for ReadHalf<T> where
    T: Send