Skip to content

Commit 98e3120

Browse files
committed
Add doc examples for io::Error::from_raw_os_error.
1 parent 0141193 commit 98e3120

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

src/libstd/io/error.rs

+24
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,30 @@ impl Error {
214214
}
215215

216216
/// Creates a new instance of an `Error` from a particular OS error code.
217+
///
218+
/// # Examples
219+
///
220+
/// On Linux:
221+
///
222+
/// ```
223+
/// # if cfg!(target_os = "linux") {
224+
/// use std::io;
225+
///
226+
/// let error = io::Error::from_raw_os_error(98);
227+
/// assert_eq!(error.kind(), io::ErrorKind::AddrInUse);
228+
/// # }
229+
/// ```
230+
///
231+
/// On Windows:
232+
///
233+
/// ```
234+
/// # if cfg!(windows) {
235+
/// use std::io;
236+
///
237+
/// let error = io::Error::from_raw_os_error(10048);
238+
/// assert_eq!(error.kind(), io::ErrorKind::AddrInUse);
239+
/// # }
240+
/// ```
217241
#[stable(feature = "rust1", since = "1.0.0")]
218242
pub fn from_raw_os_error(code: i32) -> Error {
219243
Error { repr: Repr::Os(code) }

0 commit comments

Comments
 (0)