[−][src]Struct futures_util::io::WriteAll
pub struct WriteAll<'a, W: ?Sized + 'a> { /* fields omitted */ }
A future used to write the entire contents of some data to a stream.
This is created by the write_all top-level method.
Trait Implementations
impl<'a, W: Debug + ?Sized + 'a> Debug for WriteAll<'a, W>[src]
impl<'a, W: Debug + ?Sized + 'a> Debug for WriteAll<'a, W>fn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl<W: ?Sized, '_> Unpin for WriteAll<'_, W>[src]
impl<W: ?Sized, '_> Unpin for WriteAll<'_, W>impl<W: AsyncWrite + ?Sized, '_> Future for WriteAll<'_, W>[src]
impl<W: AsyncWrite + ?Sized, '_> Future for WriteAll<'_, W>type Output = Result<()>
🔬 This is a nightly-only experimental API. (futures_api)
futures in libcore are unstable
The result of the Future.
fn poll(self: PinMut<Self>, cx: &mut Context) -> Poll<Result<()>>[src]
fn poll(self: PinMut<Self>, cx: &mut Context) -> Poll<Result<()>>🔬 This is a nightly-only experimental API. (futures_api)
futures in libcore are unstable
Attempt to resolve the future to a final value, registering the current task for wakeup if the value is not yet available. Read more