Open
Description
There are situation where you want to have the raw error value of an error, e.g. for passing back into C code. Also, there is already a perfectly good type for holding errno in Rust, std::io::Error
. It does support getting the raw error value. I suggest deprecating Errno
in favor of std::io::Error
or at least adding the necessary conversions.