[−][src]Struct futures_util::io::WriteHalf  
The writable half of an object returned from AsyncRead::split.
Trait Implementations
impl<T: Debug> Debug for WriteHalf<T>[src] 
impl<T: Debug> Debug for WriteHalf<T>fn fmt(&self, f: &mut Formatter) -> Result[src] 
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl<T: AsyncWrite> AsyncWrite for WriteHalf<T>[src] 
impl<T: AsyncWrite> AsyncWrite for WriteHalf<T>fn poll_write(&mut self, cx: &mut Context, buf: &[u8]) -> Poll<usize, Error>[src] 
fn poll_write(&mut self, cx: &mut Context, buf: &[u8]) -> Poll<usize, Error>Attempt to write bytes from buf into the object. Read more
fn poll_vectored_write(
    &mut self, 
    cx: &mut Context, 
    vec: &[&IoVec]
) -> Poll<usize, Error>[src] 
fn poll_vectored_write(
    &mut self, 
    cx: &mut Context, 
    vec: &[&IoVec]
) -> Poll<usize, Error>Attempt to write bytes from vec into the object using vectored IO operations. Read more
fn poll_flush(&mut self, cx: &mut Context) -> Poll<(), Error>[src] 
fn poll_flush(&mut self, cx: &mut Context) -> Poll<(), Error>Attempt to flush the object, ensuring that any buffered data reach their destination. Read more
fn poll_close(&mut self, cx: &mut Context) -> Poll<(), Error>[src] 
fn poll_close(&mut self, cx: &mut Context) -> Poll<(), Error>Attempt to close the object. Read more
Auto Trait Implementations
Blanket Implementations
impl<T> AsyncWriteExt for T where
    T: AsyncWrite + ?Sized, [src] 
impl<T> AsyncWriteExt for T where
    T: AsyncWrite + ?Sized, fn flush(self) -> Flush<Self> where
    Self: Sized, [src] 
fn flush(self) -> Flush<Self> where
    Self: Sized, Creates a future which will entirely flush this AsyncWrite and then return self. Read more
fn close(self) -> Close<Self> where
    Self: Sized, [src] 
fn close(self) -> Close<Self> where
    Self: Sized, Creates a future which will entirely close this AsyncWrite and then return self. Read more
fn write_all<T>(self, buf: T) -> WriteAll<Self, T> where
    T: AsRef<[u8]>,
    Self: Sized, [src] 
fn write_all<T>(self, buf: T) -> WriteAll<Self, T> where
    T: AsRef<[u8]>,
    Self: Sized, Write a Buf into this value, returning how many bytes were written. Creates a future that will write the entire contents of the buffer buf into this AsyncWrite. Read more
impl<T, U> TryFrom for T where
    T: From<U>, [src] 
impl<T, U> TryFrom for T where
    T: From<U>, type Error = !
try_from)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src] 
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>try_from)Performs the conversion.
impl<T> From for T[src] 
impl<T> From for Timpl<T, U> TryInto for T where
    U: TryFrom<T>, [src] 
impl<T, U> TryInto for T where
    U: TryFrom<T>, type Error = <U as TryFrom<T>>::Error
try_from)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src] 
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>try_from)Performs the conversion.
impl<T, U> Into for T where
    U: From<T>, [src] 
impl<T, U> Into for T where
    U: From<T>, impl<T> Borrow for T where
    T: ?Sized, [src] 
impl<T> Borrow for T where
    T: ?Sized, impl<T> BorrowMut for T where
    T: ?Sized, [src] 
impl<T> BorrowMut for T where
    T: ?Sized, fn borrow_mut(&mut self) -> &mut T[src] 
fn borrow_mut(&mut self) -> &mut TMutably borrows from an owned value. Read more
impl<T> Any for T where
    T: 'static + ?Sized, [src] 
impl<T> Any for T where
    T: 'static + ?Sized, fn get_type_id(&self) -> TypeId[src] 
fn get_type_id(&self) -> TypeId🔬 This is a nightly-only experimental API.  (get_type_id)
this method will likely be replaced by an associated static
Gets the TypeId of self. Read more