Add From<HeaderValue> impl for Value, allow to use HeaderMap::collect()

This commit is contained in:
Nikolay Kim 2022-11-09 19:00:16 +01:00
parent b2f3bde027
commit 9723b9717c
3 changed files with 20 additions and 3 deletions

View file

@ -1,5 +1,9 @@
# Changes
## [0.1.6] - 2022-11-10
* Add From<HeaderValue> impl for Value, allow to use HeaderMap::collect()
## [0.1.5] - 2022-11-04
* Add ByteString to HeaderValue conversion support

View file

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

View file

@ -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<HeaderValue> for Value {
}
}
impl From<HeaderValue> 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 {