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

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

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

Trait Implementations

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

[src]

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

[src]

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

[src]

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

[src]

Attempt to close the object. Read more

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

[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