@@ -4,8 +4,7 @@ use crate::fmt;
4
4
use crate :: result;
5
5
use crate :: sys;
6
6
7
- /// A specialized [`Result`](../result/enum.Result.html) type for I/O
8
- /// operations.
7
+ /// A specialized [`Result`] type for I/O operations.
9
8
///
10
9
/// This type is broadly used across [`std::io`] for any operation which may
11
10
/// produce an error.
@@ -16,12 +15,13 @@ use crate::sys;
16
15
/// While usual Rust style is to import types directly, aliases of [`Result`]
17
16
/// often are not, to make it easier to distinguish between them. [`Result`] is
18
17
/// generally assumed to be [`std::result::Result`][`Result`], and so users of this alias
19
- /// will generally use `io::Result` instead of shadowing the prelude's import
18
+ /// will generally use `io::Result` instead of shadowing the [ prelude] 's import
20
19
/// of [`std::result::Result`][`Result`].
21
20
///
22
- /// [`std::io`]: ../io/index.html
23
- /// [`io::Error`]: ../io/struct.Error.html
24
- /// [`Result`]: ../result/enum.Result.html
21
+ /// [`std::io`]: crate::io
22
+ /// [`io::Error`]: Error
23
+ /// [`Result`]: crate::result::Result
24
+ /// [prelude]: crate::prelude
25
25
///
26
26
/// # Examples
27
27
///
@@ -48,10 +48,9 @@ pub type Result<T> = result::Result<T, Error>;
48
48
/// `Error` can be created with crafted error messages and a particular value of
49
49
/// [`ErrorKind`].
50
50
///
51
- /// [`Read`]: ../io/trait.Read.html
52
- /// [`Write`]: ../io/trait.Write.html
53
- /// [`Seek`]: ../io/trait.Seek.html
54
- /// [`ErrorKind`]: enum.ErrorKind.html
51
+ /// [`Read`]: crate::io::Read
52
+ /// [`Write`]: crate::io::Write
53
+ /// [`Seek`]: crate::io::Seek
55
54
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
56
55
pub struct Error {
57
56
repr : Repr ,
@@ -83,7 +82,7 @@ struct Custom {
83
82
///
84
83
/// It is used with the [`io::Error`] type.
85
84
///
86
- /// [`io::Error`]: struct. Error.html
85
+ /// [`io::Error`]: Error
87
86
#[ derive( Clone , Copy , Debug , Eq , Hash , Ord , PartialEq , PartialOrd ) ]
88
87
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
89
88
#[ allow( deprecated) ]
@@ -137,7 +136,7 @@ pub enum ErrorKind {
137
136
/// For example, a function that reads a file into a string will error with
138
137
/// `InvalidData` if the file's contents are not valid UTF-8.
139
138
///
140
- /// [`InvalidInput`]: #variant. InvalidInput
139
+ /// [`InvalidInput`]: ErrorKind:: InvalidInput
141
140
#[ stable( feature = "io_invalid_data" , since = "1.2.0" ) ]
142
141
InvalidData ,
143
142
/// The I/O operation's timeout expired, causing it to be canceled.
@@ -150,8 +149,8 @@ pub enum ErrorKind {
150
149
/// particular number of bytes but only a smaller number of bytes could be
151
150
/// written.
152
151
///
153
- /// [`write`]: ../../std/io/trait. Write.html#tymethod. write
154
- /// [`Ok(0)`]: ../../std/io/type.Result.html
152
+ /// [`write`]: crate::io:: Write:: write
153
+ /// [`Ok(0)`]: Ok
155
154
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
156
155
WriteZero ,
157
156
/// This operation was interrupted.
@@ -220,9 +219,6 @@ impl From<ErrorKind> for Error {
220
219
/// let error = Error::from(not_found);
221
220
/// assert_eq!("entity not found", format!("{}", error));
222
221
/// ```
223
- ///
224
- /// [`ErrorKind`]: ../../std/io/enum.ErrorKind.html
225
- /// [`Error`]: ../../std/io/struct.Error.html
226
222
#[ inline]
227
223
fn from ( kind : ErrorKind ) -> Error {
228
224
Error { repr : Repr :: Simple ( kind) }
@@ -235,7 +231,7 @@ impl Error {
235
231
///
236
232
/// This function is used to generically create I/O errors which do not
237
233
/// originate from the OS itself. The `error` argument is an arbitrary
238
- /// payload which will be contained in this `Error`.
234
+ /// payload which will be contained in this [ `Error`] .
239
235
///
240
236
/// # Examples
241
237
///
@@ -264,7 +260,7 @@ impl Error {
264
260
///
265
261
/// This function reads the value of `errno` for the target platform (e.g.
266
262
/// `GetLastError` on Windows) and will return a corresponding instance of
267
- /// `Error` for the error code.
263
+ /// [ `Error`] for the error code.
268
264
///
269
265
/// # Examples
270
266
///
@@ -278,7 +274,7 @@ impl Error {
278
274
Error :: from_raw_os_error ( sys:: os:: errno ( ) as i32 )
279
275
}
280
276
281
- /// Creates a new instance of an `Error` from a particular OS error code.
277
+ /// Creates a new instance of an [ `Error`] from a particular OS error code.
282
278
///
283
279
/// # Examples
284
280
///
@@ -310,9 +306,12 @@ impl Error {
310
306
311
307
/// Returns the OS error that this error represents (if any).
312
308
///
313
- /// If this `Error` was constructed via `last_os_error` or
314
- /// `from_raw_os_error`, then this function will return `Some`, otherwise
315
- /// it will return `None`.
309
+ /// If this [`Error`] was constructed via [`last_os_error`] or
310
+ /// [`from_raw_os_error`], then this function will return [`Some`], otherwise
311
+ /// it will return [`None`].
312
+ ///
313
+ /// [`last_os_error`]: Error::last_os_error
314
+ /// [`from_raw_os_error`]: Error::from_raw_os_error
316
315
///
317
316
/// # Examples
318
317
///
@@ -345,8 +344,10 @@ impl Error {
345
344
346
345
/// Returns a reference to the inner error wrapped by this error (if any).
347
346
///
348
- /// If this `Error` was constructed via `new` then this function will
349
- /// return `Some`, otherwise it will return `None`.
347
+ /// If this [`Error`] was constructed via [`new`] then this function will
348
+ /// return [`Some`], otherwise it will return [`None`].
349
+ ///
350
+ /// [`new`]: Error::new
350
351
///
351
352
/// # Examples
352
353
///
@@ -380,8 +381,10 @@ impl Error {
380
381
/// Returns a mutable reference to the inner error wrapped by this error
381
382
/// (if any).
382
383
///
383
- /// If this `Error` was constructed via `new` then this function will
384
- /// return `Some`, otherwise it will return `None`.
384
+ /// If this [`Error`] was constructed via [`new`] then this function will
385
+ /// return [`Some`], otherwise it will return [`None`].
386
+ ///
387
+ /// [`new`]: Error::new
385
388
///
386
389
/// # Examples
387
390
///
@@ -448,8 +451,10 @@ impl Error {
448
451
449
452
/// Consumes the `Error`, returning its inner error (if any).
450
453
///
451
- /// If this `Error` was constructed via `new` then this function will
452
- /// return `Some`, otherwise it will return `None`.
454
+ /// If this [`Error`] was constructed via [`new`] then this function will
455
+ /// return [`Some`], otherwise it will return [`None`].
456
+ ///
457
+ /// [`new`]: Error::new
453
458
///
454
459
/// # Examples
455
460
///
@@ -480,7 +485,7 @@ impl Error {
480
485
}
481
486
}
482
487
483
- /// Returns the corresponding `ErrorKind` for this error.
488
+ /// Returns the corresponding [ `ErrorKind`] for this error.
484
489
///
485
490
/// # Examples
486
491
///
0 commit comments