Struct errno::Errno
[−]
[src]
pub struct Errno(pub c_int);
Wraps a platform-specific error code.
The Display
instance maps the code to a human-readable string. It
calls strerror_r
under POSIX, and FormatMessageW
on
Windows.