add http::Error from impl

This commit is contained in:
Nikolay Kim 2022-11-03 14:24:57 +01:00
parent c89b083133
commit 2d42c4ff41
2 changed files with 11 additions and 1 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "ntex-http"
version = "0.1.3"
version = "0.1.4"
authors = ["ntex contributors <team@ntex.rs>"]
description = "Http types for ntex framework"
keywords = ["network", "framework", "async", "futures"]

View file

@ -32,6 +32,7 @@ enum ErrorKind {
UriParts(uri::InvalidUriParts),
HeaderName(header::InvalidHeaderName),
HeaderValue(InvalidHeaderValue),
Http(http::Error),
}
impl fmt::Debug for Error {
@ -66,6 +67,7 @@ impl Error {
UriParts(ref e) => e,
HeaderName(ref e) => e,
HeaderValue(ref e) => e,
Http(ref e) => e,
}
}
}
@ -126,6 +128,14 @@ impl From<InvalidHeaderValue> for Error {
}
}
impl From<http::Error> for Error {
fn from(err: http::Error) -> Error {
Error {
inner: ErrorKind::Http(err),
}
}
}
impl From<std::convert::Infallible> for Error {
fn from(err: std::convert::Infallible) -> Error {
match err {}