[−][src]Trait futures::prelude::AsyncWrite
Write bytes asynchronously.
This trait is analogous to the std::io::Write trait, but integrates
with the asynchronous task system. In particular, the poll_write
method, unlike Write::write, will automatically queue the current task
for wakeup and return if data is not yet available, rather than blocking
the calling thread.
Required methods
fn poll_write(
self: Pin<&mut Self>,
cx: &mut Context,
buf: &[u8]
) -> Poll<Result<usize, Error>>
self: Pin<&mut Self>,
cx: &mut Context,
buf: &[u8]
) -> Poll<Result<usize, Error>>
Attempt to write bytes from buf into the object.
On success, returns Ok(Poll::Ready(num_bytes_written)).
If the object is not ready for writing, the method returns
Ok(Poll::Pending) and arranges for the current task (via
cx.waker().wake_by_ref()) to receive a notification when the object becomes
readable or is closed.
Implementation
This function may not return errors of kind WouldBlock or
Interrupted. Implementations must convert WouldBlock into
Poll::Pending and either internally retry or convert
Interrupted into another error kind.
fn poll_flush(self: Pin<&mut Self>, cx: &mut Context) -> Poll<Result<(), Error>>
Attempt to flush the object, ensuring that any buffered data reach their destination.
On success, returns Ok(Poll::Ready(())).
If flushing cannot immediately complete, this method returns
Ok(Poll::Pending) and arranges for the current task (via
cx.waker().wake_by_ref()) to receive a notification when the object can make
progress towards flushing.
Implementation
This function may not return errors of kind WouldBlock or
Interrupted. Implementations must convert WouldBlock into
Poll::Pending and either internally retry or convert
Interrupted into another error kind.
fn poll_close(self: Pin<&mut Self>, cx: &mut Context) -> Poll<Result<(), Error>>
Attempt to close the object.
On success, returns Ok(Poll::Ready(())).
If closing cannot immediately complete, this function returns
Ok(Poll::Pending) and arranges for the current task (via
cx.waker().wake_by_ref()) to receive a notification when the object can make
progress towards closing.
Implementation
This function may not return errors of kind WouldBlock or
Interrupted. Implementations must convert WouldBlock into
Poll::Pending and either internally retry or convert
Interrupted into another error kind.
Provided methods
default fn poll_vectored_write(
self: Pin<&mut Self>,
cx: &mut Context,
vec: &[&IoVec]
) -> Poll<Result<usize, Error>>
self: Pin<&mut Self>,
cx: &mut Context,
vec: &[&IoVec]
) -> Poll<Result<usize, Error>>
Attempt to write bytes from vec into the object using vectored
IO operations.
This method is similar to poll_write, but allows data from multiple buffers to be written
using a single operation.
On success, returns Ok(Poll::Ready(num_bytes_written)).
If the object is not ready for writing, the method returns
Ok(Poll::Pending) and arranges for the current task (via
cx.waker().wake_by_ref()) to receive a notification when the object becomes
readable or is closed.
By default, this method delegates to using poll_write on the first
buffer in vec. Objects which support vectored IO should override
this method.
Implementation
This function may not return errors of kind WouldBlock or
Interrupted. Implementations must convert WouldBlock into
Poll::Pending and either internally retry or convert
Interrupted into another error kind.
Implementations on Foreign Types
impl AsyncWrite for Sink[src]
fn poll_write(
self: Pin<&mut Sink>,
&mut Context,
buf: &[u8]
) -> Poll<Result<usize, Error>>[src]
self: Pin<&mut Sink>,
&mut Context,
buf: &[u8]
) -> Poll<Result<usize, Error>>
fn poll_flush(self: Pin<&mut Sink>, &mut Context) -> Poll<Result<(), Error>>[src]
fn poll_close(self: Pin<&mut Sink>, cx: &mut Context) -> Poll<Result<(), Error>>[src]
default fn poll_vectored_write(
self: Pin<&mut Self>,
cx: &mut Context,
vec: &[&IoVec]
) -> Poll<Result<usize, Error>>[src]
self: Pin<&mut Self>,
cx: &mut Context,
vec: &[&IoVec]
) -> Poll<Result<usize, Error>>
impl AsyncWrite for Vec<u8>[src]
fn poll_write(
self: Pin<&mut Vec<u8>>,
&mut Context,
buf: &[u8]
) -> Poll<Result<usize, Error>>[src]
self: Pin<&mut Vec<u8>>,
&mut Context,
buf: &[u8]
) -> Poll<Result<usize, Error>>
fn poll_flush(self: Pin<&mut Vec<u8>>, &mut Context) -> Poll<Result<(), Error>>[src]
fn poll_close(
self: Pin<&mut Vec<u8>>,
cx: &mut Context
) -> Poll<Result<(), Error>>[src]
self: Pin<&mut Vec<u8>>,
cx: &mut Context
) -> Poll<Result<(), Error>>
default fn poll_vectored_write(
self: Pin<&mut Self>,
cx: &mut Context,
vec: &[&IoVec]
) -> Poll<Result<usize, Error>>[src]
self: Pin<&mut Self>,
cx: &mut Context,
vec: &[&IoVec]
) -> Poll<Result<usize, Error>>
impl<T> AsyncWrite for Cursor<T> where
T: Unpin + AsMut<[u8]>, [src]
T: Unpin + AsMut<[u8]>,
fn poll_write(
self: Pin<&mut Cursor<T>>,
&mut Context,
buf: &[u8]
) -> Poll<Result<usize, Error>>[src]
self: Pin<&mut Cursor<T>>,
&mut Context,
buf: &[u8]
) -> Poll<Result<usize, Error>>
fn poll_flush(
self: Pin<&mut Cursor<T>>,
&mut Context
) -> Poll<Result<(), Error>>[src]
self: Pin<&mut Cursor<T>>,
&mut Context
) -> Poll<Result<(), Error>>
fn poll_close(
self: Pin<&mut Cursor<T>>,
cx: &mut Context
) -> Poll<Result<(), Error>>[src]
self: Pin<&mut Cursor<T>>,
cx: &mut Context
) -> Poll<Result<(), Error>>
default fn poll_vectored_write(
self: Pin<&mut Self>,
cx: &mut Context,
vec: &[&IoVec]
) -> Poll<Result<usize, Error>>[src]
self: Pin<&mut Self>,
cx: &mut Context,
vec: &[&IoVec]
) -> Poll<Result<usize, Error>>
impl<'a, T> AsyncWrite for Pin<&'a mut T> where
T: AsyncWrite + ?Sized, [src]
T: AsyncWrite + ?Sized,
fn poll_write(
self: Pin<&mut Pin<&'a mut T>>,
cx: &mut Context,
buf: &[u8]
) -> Poll<Result<usize, Error>>[src]
self: Pin<&mut Pin<&'a mut T>>,
cx: &mut Context,
buf: &[u8]
) -> Poll<Result<usize, Error>>
fn poll_vectored_write(
self: Pin<&mut Pin<&'a mut T>>,
cx: &mut Context,
vec: &[&IoVec]
) -> Poll<Result<usize, Error>>[src]
self: Pin<&mut Pin<&'a mut T>>,
cx: &mut Context,
vec: &[&IoVec]
) -> Poll<Result<usize, Error>>
fn poll_flush(
self: Pin<&mut Pin<&'a mut T>>,
cx: &mut Context
) -> Poll<Result<(), Error>>[src]
self: Pin<&mut Pin<&'a mut T>>,
cx: &mut Context
) -> Poll<Result<(), Error>>
fn poll_close(
self: Pin<&mut Pin<&'a mut T>>,
cx: &mut Context
) -> Poll<Result<(), Error>>[src]
self: Pin<&mut Pin<&'a mut T>>,
cx: &mut Context
) -> Poll<Result<(), Error>>
impl<T> AsyncWrite for Box<T> where
T: AsyncWrite + Unpin + ?Sized, [src]
T: AsyncWrite + Unpin + ?Sized,
fn poll_write(
self: Pin<&mut Box<T>>,
cx: &mut Context,
buf: &[u8]
) -> Poll<Result<usize, Error>>[src]
self: Pin<&mut Box<T>>,
cx: &mut Context,
buf: &[u8]
) -> Poll<Result<usize, Error>>
fn poll_vectored_write(
self: Pin<&mut Box<T>>,
cx: &mut Context,
vec: &[&IoVec]
) -> Poll<Result<usize, Error>>[src]
self: Pin<&mut Box<T>>,
cx: &mut Context,
vec: &[&IoVec]
) -> Poll<Result<usize, Error>>
fn poll_flush(
self: Pin<&mut Box<T>>,
cx: &mut Context
) -> Poll<Result<(), Error>>[src]
self: Pin<&mut Box<T>>,
cx: &mut Context
) -> Poll<Result<(), Error>>
fn poll_close(
self: Pin<&mut Box<T>>,
cx: &mut Context
) -> Poll<Result<(), Error>>[src]
self: Pin<&mut Box<T>>,
cx: &mut Context
) -> Poll<Result<(), Error>>
impl<'a, T> AsyncWrite for &'a mut T where
T: AsyncWrite + Unpin + ?Sized, [src]
T: AsyncWrite + Unpin + ?Sized,
fn poll_write(
self: Pin<&mut &'a mut T>,
cx: &mut Context,
buf: &[u8]
) -> Poll<Result<usize, Error>>[src]
self: Pin<&mut &'a mut T>,
cx: &mut Context,
buf: &[u8]
) -> Poll<Result<usize, Error>>
fn poll_vectored_write(
self: Pin<&mut &'a mut T>,
cx: &mut Context,
vec: &[&IoVec]
) -> Poll<Result<usize, Error>>[src]
self: Pin<&mut &'a mut T>,
cx: &mut Context,
vec: &[&IoVec]
) -> Poll<Result<usize, Error>>
fn poll_flush(
self: Pin<&mut &'a mut T>,
cx: &mut Context
) -> Poll<Result<(), Error>>[src]
self: Pin<&mut &'a mut T>,
cx: &mut Context
) -> Poll<Result<(), Error>>
fn poll_close(
self: Pin<&mut &'a mut T>,
cx: &mut Context
) -> Poll<Result<(), Error>>[src]
self: Pin<&mut &'a mut T>,
cx: &mut Context
) -> Poll<Result<(), Error>>
Implementors
impl<T> AsyncWrite for AllowStdIo<T> where
T: Write, [src]
T: Write,
fn poll_write(
self: Pin<&mut AllowStdIo<T>>,
&mut Context,
buf: &[u8]
) -> Poll<Result<usize, Error>>[src]
self: Pin<&mut AllowStdIo<T>>,
&mut Context,
buf: &[u8]
) -> Poll<Result<usize, Error>>
fn poll_flush(
self: Pin<&mut AllowStdIo<T>>,
&mut Context
) -> Poll<Result<(), Error>>[src]
self: Pin<&mut AllowStdIo<T>>,
&mut Context
) -> Poll<Result<(), Error>>
fn poll_close(
self: Pin<&mut AllowStdIo<T>>,
cx: &mut Context
) -> Poll<Result<(), Error>>[src]
self: Pin<&mut AllowStdIo<T>>,
cx: &mut Context
) -> Poll<Result<(), Error>>
default fn poll_vectored_write(
self: Pin<&mut Self>,
cx: &mut Context,
vec: &[&IoVec]
) -> Poll<Result<usize, Error>>[src]
self: Pin<&mut Self>,
cx: &mut Context,
vec: &[&IoVec]
) -> Poll<Result<usize, Error>>
impl<W> AsyncWrite for Compat01As03<W> where
W: AsyncWrite, [src]
W: AsyncWrite,
fn poll_write(
self: Pin<&mut Compat01As03<W>>,
cx: &mut Context,
buf: &[u8]
) -> Poll<Result<usize, Error>>[src]
self: Pin<&mut Compat01As03<W>>,
cx: &mut Context,
buf: &[u8]
) -> Poll<Result<usize, Error>>
fn poll_flush(
self: Pin<&mut Compat01As03<W>>,
cx: &mut Context
) -> Poll<Result<(), Error>>[src]
self: Pin<&mut Compat01As03<W>>,
cx: &mut Context
) -> Poll<Result<(), Error>>
fn poll_close(
self: Pin<&mut Compat01As03<W>>,
cx: &mut Context
) -> Poll<Result<(), Error>>[src]
self: Pin<&mut Compat01As03<W>>,
cx: &mut Context
) -> Poll<Result<(), Error>>
default fn poll_vectored_write(
self: Pin<&mut Self>,
cx: &mut Context,
vec: &[&IoVec]
) -> Poll<Result<usize, Error>>[src]
self: Pin<&mut Self>,
cx: &mut Context,
vec: &[&IoVec]
) -> Poll<Result<usize, Error>>
impl<W> AsyncWrite for WriteHalf<W> where
W: AsyncWrite, [src]
W: AsyncWrite,
fn poll_write(
self: Pin<&mut WriteHalf<W>>,
cx: &mut Context,
buf: &[u8]
) -> Poll<Result<usize, Error>>[src]
self: Pin<&mut WriteHalf<W>>,
cx: &mut Context,
buf: &[u8]
) -> Poll<Result<usize, Error>>
fn poll_vectored_write(
self: Pin<&mut WriteHalf<W>>,
cx: &mut Context,
vec: &[&IoVec]
) -> Poll<Result<usize, Error>>[src]
self: Pin<&mut WriteHalf<W>>,
cx: &mut Context,
vec: &[&IoVec]
) -> Poll<Result<usize, Error>>
fn poll_flush(
self: Pin<&mut WriteHalf<W>>,
cx: &mut Context
) -> Poll<Result<(), Error>>[src]
self: Pin<&mut WriteHalf<W>>,
cx: &mut Context
) -> Poll<Result<(), Error>>
fn poll_close(
self: Pin<&mut WriteHalf<W>>,
cx: &mut Context
) -> Poll<Result<(), Error>>[src]
self: Pin<&mut WriteHalf<W>>,
cx: &mut Context
) -> Poll<Result<(), Error>>