From 2d42c4ff41971da2033b2da0e66a2dd199982612 Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Thu, 3 Nov 2022 14:24:57 +0100 Subject: [PATCH] add http::Error from impl --- ntex-http/Cargo.toml | 2 +- ntex-http/src/error.rs | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/ntex-http/Cargo.toml b/ntex-http/Cargo.toml index e25e9b49..dfc48b1c 100644 --- a/ntex-http/Cargo.toml +++ b/ntex-http/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntex-http" -version = "0.1.3" +version = "0.1.4" authors = ["ntex contributors "] description = "Http types for ntex framework" keywords = ["network", "framework", "async", "futures"] diff --git a/ntex-http/src/error.rs b/ntex-http/src/error.rs index 51a05e00..5a471547 100644 --- a/ntex-http/src/error.rs +++ b/ntex-http/src/error.rs @@ -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 for Error { } } +impl From for Error { + fn from(err: http::Error) -> Error { + Error { + inner: ErrorKind::Http(err), + } + } +} + impl From for Error { fn from(err: std::convert::Infallible) -> Error { match err {}