Add documentation links.

This commit is contained in:
Corey Farwell
2016-09-07 21:19:34 -04:00
parent 815dc803db
commit d7f76ca549
6 changed files with 18 additions and 6 deletions
+3 -1
View File
@@ -4,8 +4,10 @@ use futures::{Future, Poll};
/// A future which will copy all data from a reader into a writer.
///
/// Created by the `copy` function, this future will resolve to the number of
/// Created by the [`copy`] function, this future will resolve to the number of
/// bytes copied or an error if one happens.
///
/// [`copy`]: fn.copy.html
pub struct Copy<R, W> {
reader: R,
read_done: bool,