pub async fn copy<R, W>(reader: R, writer: W) -> Result<usize>Expand description
Copies the entire contents of a reader into a writer.
This function will read data from reader and write it into writer in a streaming fashion
until reader returns EOF.
On success, returns the total number of bytes copied.