File tree Expand file tree Collapse file tree 6 files changed +8
-8
lines changed Expand file tree Collapse file tree 6 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ cfg_if! {
33
33
///
34
34
/// [`std::io::BufRead`]: https://doc.rust-lang.org/std/io/trait.BufRead.html
35
35
/// [`futures::io::AsyncBufRead`]:
36
- /// https://docs/futures-preview/0.3.0-alpha.17/futures/io/trait.AsyncBufRead.html
36
+ /// https://docs.rs /futures-preview/0.3.0-alpha.17/futures/io/trait.AsyncBufRead.html
37
37
pub trait BufRead {
38
38
/// Reads all bytes into `buf` until the delimiter `byte` or EOF is reached.
39
39
///
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ cfg_if! {
34
34
///
35
35
/// [`std::io::Read`]: https://doc.rust-lang.org/std/io/trait.Read.html
36
36
/// [`futures::io::AsyncRead`]:
37
- /// https://docs/futures-preview/0.3.0-alpha.17/futures/io/trait.AsyncRead.html
37
+ /// https://docs.rs /futures-preview/0.3.0-alpha.17/futures/io/trait.AsyncRead.html
38
38
pub trait Read {
39
39
/// Reads some bytes from the byte stream.
40
40
///
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ cfg_if! {
31
31
///
32
32
/// [`std::io::Seek`]: https://doc.rust-lang.org/std/io/trait.Seek.html
33
33
/// [`futures::io::AsyncSeek`]:
34
- /// https://docs/futures-preview/0.3.0-alpha.17/futures/io/trait.AsyncSeek.html
34
+ /// https://docs.rs /futures-preview/0.3.0-alpha.17/futures/io/trait.AsyncSeek.html
35
35
pub trait Seek {
36
36
/// Seeks to a new position in a byte stream.
37
37
///
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ cfg_if! {
33
33
///
34
34
/// [`std::io::Write`]: https://doc.rust-lang.org/std/io/trait.Write.html
35
35
/// [`futures::io::AsyncWrite`]:
36
- /// https://docs/futures-preview/0.3.0-alpha.17/futures/io/trait.AsyncWrite.html
36
+ /// https://docs.rs /futures-preview/0.3.0-alpha.17/futures/io/trait.AsyncWrite.html
37
37
pub trait Write {
38
38
/// Writes some bytes into the byte stream.
39
39
///
Original file line number Diff line number Diff line change @@ -25,9 +25,9 @@ use crate::task::{Context, Poll};
25
25
/// [`connect`]: struct.TcpStream.html#method.connect
26
26
/// [accepting]: struct.TcpListener.html#method.accept
27
27
/// [listener]: struct.TcpListener.html
28
- /// [`AsyncRead`]: https://docs/futures-preview/0.3.0-alpha.13 /futures/io/trait.AsyncRead.html
29
- /// [`AsyncWrite`]: https://docs/futures-preview/0.3.0-alpha.13 /futures/io/trait.AsyncRead .html
30
- /// [`futures::io`]: https://docs/futures-preview/0.3.0-alpha.13 /futures/io
28
+ /// [`AsyncRead`]: https://docs.rs /futures-preview/0.3.0-alpha.17 /futures/io/trait.AsyncRead.html
29
+ /// [`AsyncWrite`]: https://docs.rs /futures-preview/0.3.0-alpha.17 /futures/io/trait.AsyncWrite .html
30
+ /// [`futures::io`]: https://docs.rs /futures-preview/0.3.0-alpha.17 /futures/io/index.html
31
31
/// [`shutdown`]: struct.TcpStream.html#method.shutdown
32
32
/// [`std::net::TcpStream`]: https://doc.rust-lang.org/std/net/struct.TcpStream.html
33
33
///
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ cfg_if! {
53
53
///
54
54
/// [`std::iter::Iterator`]: https://doc.rust-lang.org/std/iter/trait.Iterator.html
55
55
/// [`futures::stream::Stream`]:
56
- /// https://docs/futures-preview/0.3.0-alpha.17/futures/stream/trait.Stream.html
56
+ /// https://docs.rs /futures-preview/0.3.0-alpha.17/futures/stream/trait.Stream.html
57
57
pub trait Stream {
58
58
/// The type of items yielded by this stream.
59
59
type Item ;
You can’t perform that action at this time.
0 commit comments