Expand description
The Errno
type, which is a minimal wrapper around an error code.
We define the error constants as individual const
s instead of an enum
because we may not know about all of the host’s error values and we don’t
want unrecognized values to create undefined behavior.
Re-exports§
pub use backend::io::errno::Errno;
Functions§
- Call
f
until it either succeeds or fails other thanErrno::INTR
.
Type Aliases§
- A specialized
Result
type forrustix
APIs.