Enum hyper::error::Error [] [src]

pub enum Error {
    Method,
    Uri(ParseError),
    Version,
    Header,
    TooLarge,
    Status,
    Io(IoError),
    Ssl(Box<StdError + Send + Sync>),
    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 RequestUri, 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.

An invalid Status, such as 1337 ELITE.

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

An error from a SSL library.

Parsing a field as string failed

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

impl Display for Error
[src]

Formats the value using the given formatter.

impl StdError for Error
[src]

A short description of the error. Read more

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

impl From<IoError> for Error
[src]

Performs the conversion.

impl From<ParseError> for Error
[src]

Performs the conversion.

impl From<Utf8Error> for Error
[src]

Performs the conversion.

impl From<FromUtf8Error> for Error
[src]

Performs the conversion.

impl From<Error> for Error
[src]

Performs the conversion.