about summary refs log tree commit diff
path: root/library/std/src/io
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2021-11-21 09:00:13 +0100
committerGeorg Brandl <georg@python.org>2021-11-21 09:00:13 +0100
commit289eb786d4fa6316fc99c537bb19de86621ede16 (patch)
tree9ed40da5339d6858f9400af732d463b7cdc470f1 /library/std/src/io
parent3d789740b09002e3d2be3ab1cf53fdca3995034c (diff)
downloadrust-289eb786d4fa6316fc99c537bb19de86621ede16.tar.gz
rust-289eb786d4fa6316fc99c537bb19de86621ede16.zip
Mention std::io::Error::from(ErrorKind) in Error::new() docs
This conversion is not very discoverable for the cases
where an error is required without extra payload.
Diffstat (limited to 'library/std/src/io')
-rw-r--r--library/std/src/io/error.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/library/std/src/io/error.rs b/library/std/src/io/error.rs
index 3da28695b34..d93c6172cfc 100644
--- a/library/std/src/io/error.rs
+++ b/library/std/src/io/error.rs
@@ -392,6 +392,9 @@ impl Error {
     /// originate from the OS itself. The `error` argument is an arbitrary
     /// payload which will be contained in this [`Error`].
     ///
+    /// If no extra payload is required, use the `From` conversion from
+    /// `ErrorKind`.
+    ///
     /// # Examples
     ///
     /// ```
@@ -402,6 +405,9 @@ impl Error {
     ///
     /// // errors can also be created from other errors
     /// let custom_error2 = Error::new(ErrorKind::Interrupted, custom_error);
+    ///
+    /// // creating an error without payload
+    /// let eof_error = Error::from(ErrorKind::UnexpectedEof);
     /// ```
     #[stable(feature = "rust1", since = "1.0.0")]
     pub fn new<E>(kind: ErrorKind, error: E) -> Error