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

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

An invalid RequestUri, 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.

Status

An invalid Status, such as 1337 ELITE.

Io

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

Ssl

An error from a SSL library.

Http2

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

Utf8

Parsing a field as string failed

Trait Implementations

impl Display for Error

fn fmt(&self, f: &mut Formatter) -> Result

impl StdError for Error

fn description(&self) -> &str

fn cause(&self) -> Option<&StdError>

impl From<IoError> for Error

fn from(err: IoError) -> Error

impl From<ParseError> for Error

fn from(err: ParseError) -> Error

impl From<SslError> for Error

fn from(err: SslError) -> Error

impl From<Utf8Error> for Error

fn from(err: Utf8Error) -> Error

impl From<FromUtf8Error> for Error

fn from(err: FromUtf8Error) -> Error

impl From<Error> for Error

fn from(err: Error) -> Error

impl From<Http2Error> for Error

fn from(err: Http2Error) -> Error

Derived Implementations

impl Debug for Error

fn fmt(&self, __arg_0: &mut Formatter) -> Result