Enum solicit::http::HttpError [] [src]

pub enum HttpError {
    IoError(Error),
    InvalidFrame,
    CompressionError(DecoderError),
    UnknownStreamId,
    UnableToConnect,
    MalformedResponse,
    Other(Box<Error + Send + Sync>),
}

An enum representing errors that can arise when performing operations involving an HTTP/2 connection.

Variants

IoError
InvalidFrame
CompressionError
UnknownStreamId
UnableToConnect
MalformedResponse
Other

Trait Implementations

impl<E> From<E> for HttpError where E: HttpConnectError + 'static
[src]

fn from(e: E) -> HttpError

Performs the conversion.

impl From<Error> for HttpError
[src]

Implement the trait that allows us to automatically convert io::Errors into an HttpError by wrapping the given io::Error into an HttpError::IoError variant.

fn from(err: Error) -> HttpError

Performs the conversion.

impl Display for HttpError
[src]

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

Formats the value using the given formatter.

impl Error for HttpError
[src]

fn description(&self) -> &str

A short description of the error. Read more

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

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

Derived Implementations

impl Debug for HttpError
[src]

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

Formats the value using the given formatter.