Enum fortanix_sgx_abi::Error [−][src]
#[repr(i32)]
pub enum Error {
Show 20 variants
PermissionDenied,
NotFound,
Interrupted,
WouldBlock,
AlreadyExists,
InvalidInput,
BrokenPipe,
AddrInUse,
AddrNotAvailable,
ConnectionAborted,
ConnectionReset,
NotConnected,
TimedOut,
ConnectionRefused,
InvalidData,
WriteZero,
UnexpectedEof,
Other,
UserRangeStart,
UserRangeEnd,
}
Expand description
Error code definitions and space allocation.
Only non-zero positive values are valid errors. The variants are designed to map to std::io::ErrorKind. See the source for the value mapping.
Variants
This value is reserved for Other
, but all undefined values also map
to Other
.
Start of the range of values reserved for user-defined errors.
End (inclusive) of the range of values reserved for user-defined errors.