mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +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]
|
||||
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"]
|
||||
|
|
|
@ -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 {}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue