Returns a description of the errno value, if any.
(self)
| 998 | impl Errno { |
| 999 | /// Returns a description of the errno value, if any. |
| 1000 | pub const fn message(self) -> Option<&'static str> { |
| 1001 | errno::strerror(self.0) |
| 1002 | } |
| 1003 | |
| 1004 | /// Converts the given `code` to an error number in `Errno`'s representation. |
| 1005 | #[inline] |
no outgoing calls
no test coverage detected