Struct futures::io::ReadHalf[][src]

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

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

Trait Implementations

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

[]

Formats the value using the given formatter. Read more

impl<R> AsyncRead for ReadHalf<R> where
    R: AsyncRead
[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