We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 592bdc3 commit 972d67cCopy full SHA for 972d67c
src/libstd/io/error.rs
@@ -51,13 +51,16 @@ use convert::From;
51
#[stable(feature = "rust1", since = "1.0.0")]
52
pub type Result<T> = result::Result<T, Error>;
53
54
-/// The error type for I/O operations of the `Read`, `Write`, `Seek`, and
+/// The error type for I/O operations of the [`Read`], [`Write`], [`Seek`], and
55
/// associated traits.
56
///
57
/// Errors mostly originate from the underlying OS, but custom instances of
58
/// `Error` can be created with crafted error messages and a particular value of
59
/// [`ErrorKind`].
60
61
+/// [`Read`]: ../io/trait.Read.html
62
+/// [`Write`]: ../io/trait.Write.html
63
+/// [`Seek`]: ../io/trait.Seek.html
64
/// [`ErrorKind`]: enum.ErrorKind.html
65
#[derive(Debug)]
66
0 commit comments