mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 21:37:58 +03:00
add http::Error from impl
This commit is contained in:
parent
c89b083133
commit
2d42c4ff41
2 changed files with 11 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ntex-http"
|
name = "ntex-http"
|
||||||
version = "0.1.3"
|
version = "0.1.4"
|
||||||
authors = ["ntex contributors <team@ntex.rs>"]
|
authors = ["ntex contributors <team@ntex.rs>"]
|
||||||
description = "Http types for ntex framework"
|
description = "Http types for ntex framework"
|
||||||
keywords = ["network", "framework", "async", "futures"]
|
keywords = ["network", "framework", "async", "futures"]
|
||||||
|
|
|
@ -32,6 +32,7 @@ enum ErrorKind {
|
||||||
UriParts(uri::InvalidUriParts),
|
UriParts(uri::InvalidUriParts),
|
||||||
HeaderName(header::InvalidHeaderName),
|
HeaderName(header::InvalidHeaderName),
|
||||||
HeaderValue(InvalidHeaderValue),
|
HeaderValue(InvalidHeaderValue),
|
||||||
|
Http(http::Error),
|
||||||
}
|
}
|
||||||
|
|
||||||
impl fmt::Debug for Error {
|
impl fmt::Debug for Error {
|
||||||
|
@ -66,6 +67,7 @@ impl Error {
|
||||||
UriParts(ref e) => e,
|
UriParts(ref e) => e,
|
||||||
HeaderName(ref e) => e,
|
HeaderName(ref e) => e,
|
||||||
HeaderValue(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 {
|
impl From<std::convert::Infallible> for Error {
|
||||||
fn from(err: std::convert::Infallible) -> Error {
|
fn from(err: std::convert::Infallible) -> Error {
|
||||||
match err {}
|
match err {}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue