Enum hyper::error::Error
[−]
[src]
pub enum Error { Method, Uri(UriError), Version, Header, TooLarge, Incomplete, Status, Timeout, Io(IoError), Utf8(Utf8Error), // some variants omitted }
A set of errors that can occur parsing HTTP streams.
Variants
Method
An invalid Method
, such as GE,T
.
Uri(UriError)
An invalid Uri
, such as exam ple.domain
.
Version
An invalid HttpVersion
, such as HTP/1.1
Header
An invalid Header
.
TooLarge
A message head is too large to be reasonable.
Incomplete
A message reached EOF, but is not complete.
Status
An invalid Status
, such as 1337 ELITE
.
Timeout
A timeout occurred waiting for an IO event.
Io(IoError)
An io::Error
that occurred while trying to read or write to a network stream.
Utf8(Utf8Error)
Parsing a field as string failed
Trait Implementations
impl Debug for Error
[src]
impl Display for Error
[src]
fn fmt(&self, f: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more
impl StdError for Error
[src]
fn description(&self) -> &str
[src]
A short description of the error. Read more
fn cause(&self) -> Option<&StdError>
[src]
The lower-level cause of this error, if any. Read more
impl From<UriError> for Error
[src]
impl From<IoError> for Error
[src]
impl From<Utf8Error> for Error
[src]
impl From<FromUtf8Error> for Error
[src]
fn from(err: FromUtf8Error) -> Error
[src]
Performs the conversion.