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

An invalid Method, such as GE,T.

An invalid Uri, such as exam ple.domain.

An invalid HttpVersion, such as HTP/1.1

An invalid Header.

A message head is too large to be reasonable.

A message reached EOF, but is not complete.

An invalid Status, such as 1337 ELITE.

A timeout occurred waiting for an IO event.

An io::Error that occurred while trying to read or write to a network stream.

Parsing a field as string failed

Trait Implementations

impl Debug for Error
[src]

[src]

Formats the value using the given formatter.

impl Display for Error
[src]

[src]

Formats the value using the given formatter. Read more

impl StdError for Error
[src]

[src]

A short description of the error. Read more

[src]

The lower-level cause of this error, if any. Read more

impl From<UriError> for Error
[src]

[src]

Performs the conversion.

impl From<IoError> for Error
[src]

[src]

Performs the conversion.

impl From<Utf8Error> for Error
[src]

[src]

Performs the conversion.

impl From<FromUtf8Error> for Error
[src]

[src]

Performs the conversion.

impl From<Error> for Error
[src]

[src]

Performs the conversion.