Struct futures::io::WriteHalf[][src]

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

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

Trait Implementations

impl<W> AsyncWrite for WriteHalf<W> where
    W: AsyncWrite
[src]

Attempt to write bytes from buf into the object. Read more

Attempt to write bytes from vec into the object using vectored IO operations. Read more

Attempt to flush the object, ensuring that any buffered data reach their destination. Read more

Attempt to close the object. Read more

impl<T> Debug for WriteHalf<T> where
    T: Debug
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

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

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