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]

[src]

Formats the value using the given formatter. Read more

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

[src]

Attempt to read from the AsyncRead into buf. Read more

[src]

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

[src]

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