2021-06-26 07:50:42 -05:00
|
|
|
#[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,
|
2021-06-26 08:22:15 -05:00
|
|
|
#[doc(hidden)]
|
|
|
|
Uncategorized,
|
2021-06-26 07:50:42 -05:00
|
|
|
}
|