[−][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<W: AsyncWrite> AsyncWrite for WriteHalf<W>
[src]
fn poll_write(&mut self, waker: &Waker, buf: &[u8]) -> Poll<Result<usize>>
[src]
fn poll_vectored_write(
&mut self,
waker: &Waker,
vec: &[&IoVec]
) -> Poll<Result<usize>>
[src]
&mut self,
waker: &Waker,
vec: &[&IoVec]
) -> Poll<Result<usize>>
fn poll_flush(&mut self, waker: &Waker) -> Poll<Result<()>>
[src]
fn poll_close(&mut self, waker: &Waker) -> Poll<Result<()>>
[src]
Auto Trait Implementations
Blanket Implementations
impl<W> AsyncWriteExt for W where
W: AsyncWrite + ?Sized,
[src]
W: AsyncWrite + ?Sized,
fn flush(&mut self) -> Flush<Self>
[src]
Creates a future which will entirely flush this AsyncWrite
. Read more
fn close(&mut self) -> Close<Self>
[src]
Creates a future which will entirely close this AsyncWrite
.
fn write_all<'a>(&'a mut self, buf: &'a [u8]) -> WriteAll<'a, Self>
[src]
Write data into this object. Read more
ⓘImportant traits for Compat<R>fn compat_write(self) -> Compat<Self> where
Self: Sized,
[src]
ⓘImportant traits for Compat<R>
Self: Sized,
Wraps an AsyncWrite
in a compatibility wrapper that allows it to be used as a futures 0.1 / tokio-io 0.1 AsyncWrite
. Requires the io-compat
feature to enable. Read more
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From for T
[src]
impl<T, U> TryFrom for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = !
🔬 This is a nightly-only experimental API. (
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]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
ⓘImportant traits for &'_ mut Ifn borrow_mut(&mut self) -> &mut T
[src]
ⓘImportant traits for &'_ mut I
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,