Struct futures_util::io::CopyInto
[−]
[src]
pub struct CopyInto<R, W> { /* 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<R: Debug, W: Debug> Debug for CopyInto<R, W>[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl<R, W> Future for CopyInto<R, W> where
R: AsyncRead,
W: AsyncWrite, [src]
R: AsyncRead,
W: AsyncWrite,