diff --git a/ntex-http/CHANGES.md b/ntex-http/CHANGES.md index 2136229a..fd7d6cc4 100644 --- a/ntex-http/CHANGES.md +++ b/ntex-http/CHANGES.md @@ -1,5 +1,9 @@ # Changes +## [0.1.6] - 2022-11-10 + +* Add From impl for Value, allow to use HeaderMap::collect() + ## [0.1.5] - 2022-11-04 * Add ByteString to HeaderValue conversion support diff --git a/ntex-http/Cargo.toml b/ntex-http/Cargo.toml index 15eed795..701f9b23 100644 --- a/ntex-http/Cargo.toml +++ b/ntex-http/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntex-http" -version = "0.1.5" +version = "0.1.6" authors = ["ntex contributors "] description = "Http types for ntex framework" keywords = ["network", "framework", "async", "futures"] diff --git a/ntex-http/src/map.rs b/ntex-http/src/map.rs index 6afa1e21..a82ff28c 100644 --- a/ntex-http/src/map.rs +++ b/ntex-http/src/map.rs @@ -1,6 +1,5 @@ use std::collections::{self, hash_map, hash_map::Entry}; -use std::convert::TryFrom; -use std::iter::FromIterator; +use std::{convert::TryFrom, iter::FromIterator}; use crate::{HeaderName, HeaderValue}; @@ -108,6 +107,20 @@ impl Extend for Value { } } +impl From for Value { + #[inline] + fn from(hdr: HeaderValue) -> Value { + Value::One(hdr) + } +} + +impl<'a> From<&'a HeaderValue> for Value { + #[inline] + fn from(hdr: &'a HeaderValue) -> Value { + Value::One(hdr.clone()) + } +} + impl Default for HeaderMap { #[inline] fn default() -> Self {