Rollup merge of #34612 - frewsxcv:io-error-from_raw_os_error, r=steveklabnik

Add doc examples for `io::Error::from_raw_os_error`.

None
This commit is contained in:
Manish Goregaokar 2016-07-08 13:14:20 +05:30
commit 75276f36fe
1 changed files with 24 additions and 0 deletions

View File

@ -214,6 +214,30 @@ impl Error {
}
/// Creates a new instance of an `Error` from a particular OS error code.
///
/// # Examples
///
/// On Linux:
///
/// ```
/// # if cfg!(target_os = "linux") {
/// use std::io;
///
/// let error = io::Error::from_raw_os_error(98);
/// assert_eq!(error.kind(), io::ErrorKind::AddrInUse);
/// # }
/// ```
///
/// On Windows:
///
/// ```
/// # if cfg!(windows) {
/// use std::io;
///
/// let error = io::Error::from_raw_os_error(10048);
/// assert_eq!(error.kind(), io::ErrorKind::AddrInUse);
/// # }
/// ```
#[stable(feature = "rust1", since = "1.0.0")]
pub fn from_raw_os_error(code: i32) -> Error {
Error { repr: Repr::Os(code) }