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

Trait Implementations

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

Performs the conversion.

impl Debug for HttpError
[src]

Formats the value using the given formatter.

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.

Performs the conversion.

impl Display for HttpError
[src]

Formats the value using the given formatter. Read more

impl Error for HttpError
[src]

A short description of the error. Read more

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