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
impl From<Error> for HttpError
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.