24 lines
395 B
Rust
24 lines
395 B
Rust
#[non_exhaustive]
|
|
pub enum ErrorKind {
|
|
NotFound,
|
|
PermissionDenied,
|
|
ConnectionRefused,
|
|
ConnectionReset,
|
|
ConnectionAborted,
|
|
NotConnected,
|
|
AddrInUse,
|
|
AddrNotAvailable,
|
|
BrokenPipe,
|
|
AlreadyExists,
|
|
WouldBlock,
|
|
InvalidInput,
|
|
InvalidData,
|
|
TimedOut,
|
|
WriteZero,
|
|
Interrupted,
|
|
Other,
|
|
UnexpectedEof,
|
|
Unsupported,
|
|
OutOfMemory,
|
|
}
|