Struct futures::io::CopyInto[][src]

pub struct CopyInto<'a, R, W> where
    R: 'a + ?Sized,
    W: 'a + ?Sized
{ /* fields omitted */ }

A future which will copy all data from a reader into a writer.

Created by the copy_into function, this future will resolve to the number of bytes copied or an error if one happens.

Trait Implementations

impl<'a, R, W> Unpin for CopyInto<'a, R, W> where
    R: ?Sized,
    W: ?Sized
[src]

impl<'a, R, W> Debug for CopyInto<'a, R, W> where
    R: 'a + Debug + ?Sized,
    W: 'a + Debug + ?Sized
[src]

Formats the value using the given formatter. Read more

impl<'a, R, W> Future for CopyInto<'a, R, W> where
    R: AsyncRead + ?Sized,
    W: AsyncWrite + ?Sized
[src]

🔬 This is a nightly-only experimental API. (futures_api)

futures in libcore are unstable

The result of the Future.

🔬 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

Auto Trait Implementations

impl<'a, R: ?Sized, W: ?Sized> Send for CopyInto<'a, R, W> where
    R: Send,
    W: Send

impl<'a, R: ?Sized, W: ?Sized> Sync for CopyInto<'a, R, W> where
    R: Sync,
    W: Sync