Enum hyperx::Error[][src]

pub enum Error {
    Method,
    Version,
    Header,
    TooLarge,
    Status,
    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 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.

A timeout occurred waiting for an IO event. Parsing a field as string failed

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter. Read more

impl Display for Error
[src]

Formats the value using the given formatter. Read more

impl StdError for Error
[src]

This method is soft-deprecated. Read more

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

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.

Auto Trait Implementations

impl Send for Error

impl Sync for Error