Enum igd::HttpError [] [src]

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

An HTTP/2-specific error, coming from the solicit library.

Parsing a field as string failed

Trait Implementations

impl Debug for Error

Formats the value using the given formatter.

impl Display for Error

Formats the value using the given formatter.

impl Error for Error

A short description of the error. Read more

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

impl From<Error> for Error

Performs the conversion.

impl From<ParseError> for Error

Performs the conversion.

impl From<Utf8Error> for Error

Performs the conversion.

impl From<FromUtf8Error> for Error

Performs the conversion.

impl From<Error> for Error

Performs the conversion.

impl From<HttpError> for Error

Performs the conversion.