Struct tokio::io::WriteHalf [−][src]
pub struct WriteHalf<T> { /* fields omitted */ }
Expand description
The writable half of a value returned from split
.
Implementations
Check if this WriteHalf
and some ReadHalf
were split from the same
stream.
Trait Implementations
Attempt to write bytes from buf
into the object. Read more
Attempts to flush the object, ensuring that any buffered data reach their destination. Read more
Initiates or attempts to shut down this writer, returning success when the I/O connection has completely shut down. Read more
Like poll_write
, except that it writes from a slice of buffers. Read more
Determines if this writer has an efficient poll_write_vectored
implementation. Read more