#[non_exhaustive]
pub enum ErrorKind {
NotFound,
PermissionDenied,
ConnectionRefused,
ConnectionReset,
ConnectionAborted,
NotConnected,
AddrInUse,
AddrNotAvailable,
BrokenPipe,
AlreadyExists,
WouldBlock,
InvalidInput,
InvalidData,
TimedOut,
WriteZero,
Interrupted,
Other,
UnexpectedEof,
}
A list specifying general categories of I/O error.
This list is intended to grow over time and it is not recommended to exhaustively match against it.
It is used with the io::Error type.
NotFoundAn entity was not found, often a file.
PermissionDeniedThe operation lacked the necessary privileges to complete.
ConnectionRefusedThe connection was refused by the remote server.
ConnectionResetThe connection was reset by the remote server.
ConnectionAbortedThe connection was aborted (terminated) by the remote server.
NotConnectedThe network operation failed because it was not connected yet.
AddrInUseA socket address could not be bound because the address is already in use elsewhere.
AddrNotAvailableA nonexistent interface was requested or the requested address was not local.
BrokenPipeThe operation failed because a pipe was closed.
AlreadyExistsAn entity already exists, often a file.
WouldBlockThe operation needs to block to complete, but the blocking operation was requested to not occur.
InvalidInputA parameter was incorrect.
InvalidDataData not valid for the operation were encountered.
Unlike InvalidInput, this typically means that the operation parameters were valid, however the error was caused by malformed input data.
For example, a function that reads a file into a string will error with InvalidData if the file's contents are not valid UTF-8.
TimedOutThe I/O operation's timeout expired, causing it to be canceled.
WriteZeroAn error returned when an operation could not be completed because a call to write returned Ok(0).
This typically means that an operation could only succeed if it wrote a particular number of bytes but only a smaller number of bytes could be written.
InterruptedThis operation was interrupted.
Interrupted operations can typically be retried.
OtherAny I/O error not part of this list.
UnexpectedEofAn error returned when an operation could not be completed because an "end of file" was reached prematurely.
This typically means that an operation could only succeed if it read a particular number of bytes but only a smaller number of bytes could be read.
1.6.0impl PartialEq<ErrorKind> for ErrorKind[src]
fn eq(&self, other: &ErrorKind) -> bool[src]
fn ne(&self, other: &Rhs) -> bool[src]
This method tests for !=.
impl Eq for ErrorKind[src]
impl Ord for ErrorKind[src]
fn cmp(&self, other: &ErrorKind) -> Ordering[src]
fn max(self, other: Self) -> Self[src]1.21.0
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self[src]1.21.0
Compares and returns the minimum of two values. Read more
fn clamp(self, min: Self, max: Self) -> Self[src]
Restrict a value to a certain interval. Read more
impl PartialOrd<ErrorKind> for ErrorKind[src]
fn partial_cmp(&self, other: &ErrorKind) -> Option<Ordering>[src]
fn lt(&self, other: &Rhs) -> bool[src]
This method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, other: &Rhs) -> bool[src]
This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, other: &Rhs) -> bool[src]
This method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, other: &Rhs) -> bool[src]
This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl Hash for ErrorKind[src]
fn hash<__H:Â Hasher>(&self, state: &mut __H)[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher, [src]1.3.0
Feeds a slice of this type into the given [Hasher]. Read more
impl Debug for ErrorKind[src]
impl Copy for ErrorKind[src]
impl From<ErrorKind> for Error[src]1.14.0
Intended for use for errors not exposed to the user, where allocating onto the heap (for normal construction via Error::new) is too costly.
impl Clone for ErrorKind[src]
impl UnwindSafe for ErrorKindimpl RefUnwindSafe for ErrorKindimpl Unpin for ErrorKindimpl Send for ErrorKindimpl Sync for ErrorKindimpl<T, U> TryFrom<U> for T where
    U: Into<T>, [src]
type Error = InfallibleThe type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> Into<U> for T where
    U: From<T>, [src]
impl<T> From<T> for T[src]
impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, [src]
type Error = <U as TryFrom<T>>::ErrorThe type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Borrow<T> for T where
    T: ?Sized, [src]
fn borrow(&self) -> &T[src]
impl<'_, F> Future for &'_ mut F where
    F: Unpin + Future + ?Sized,Â
type Output = <F as Future>::Output;
impl<'_, I> Iterator for &'_ mut I where
    I: Iterator + ?Sized,Â
type Item = <I as Iterator>::Item;
impl<'_, R:Â Read + ?Sized> Read for &'_ mut R
impl<'_, W:Â Write + ?Sized> Write for &'_ mut W
impl<T> BorrowMut<T> for T where
    T: ?Sized, [src]
fn borrow_mut(&mut self) -> &mut T[src]
impl<'_, F> Future for &'_ mut F where
    F: Unpin + Future + ?Sized,Â
type Output = <F as Future>::Output;
impl<'_, I> Iterator for &'_ mut I where
    I: Iterator + ?Sized,Â
type Item = <I as Iterator>::Item;
impl<'_, R:Â Read + ?Sized> Read for &'_ mut R
impl<'_, W:Â Write + ?Sized> Write for &'_ mut W
impl<T> Any for T where
    T: 'static + ?Sized, [src]
impl<T> ToOwned for T where
    T: Clone, [src]
© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/io/enum.ErrorKind.html