Struct futures_util::io::WriteAll [] [src]

pub struct WriteAll<A, T> { /* 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: Debug, T: Debug> Debug for WriteAll<A, T>
[src]

[src]

Formats the value using the given formatter. Read more

impl<A, T> Future for WriteAll<A, T> where
    A: AsyncWrite,
    T: AsRef<[u8]>, 
[src]

A successful value

An error

[src]

Attempt to resolve the future to a final value, registering the current task for wakeup if the value is not yet available. Read more

Auto Trait Implementations

impl<A, T> Send for WriteAll<A, T> where
    A: Send,
    T: Send

impl<A, T> Sync for WriteAll<A, T> where
    A: Sync,
    T: Sync