mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 13:27:39 +03:00
Add From<HeaderValue> impl for Value, allow to use HeaderMap::collect()
This commit is contained in:
parent
b2f3bde027
commit
9723b9717c
3 changed files with 20 additions and 3 deletions
|
@ -1,5 +1,9 @@
|
||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
|
## [0.1.6] - 2022-11-10
|
||||||
|
|
||||||
|
* Add From<HeaderValue> impl for Value, allow to use HeaderMap::collect()
|
||||||
|
|
||||||
## [0.1.5] - 2022-11-04
|
## [0.1.5] - 2022-11-04
|
||||||
|
|
||||||
* Add ByteString to HeaderValue conversion support
|
* Add ByteString to HeaderValue conversion support
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ntex-http"
|
name = "ntex-http"
|
||||||
version = "0.1.5"
|
version = "0.1.6"
|
||||||
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"]
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
use std::collections::{self, hash_map, hash_map::Entry};
|
use std::collections::{self, hash_map, hash_map::Entry};
|
||||||
use std::convert::TryFrom;
|
use std::{convert::TryFrom, iter::FromIterator};
|
||||||
use std::iter::FromIterator;
|
|
||||||
|
|
||||||
use crate::{HeaderName, HeaderValue};
|
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 {
|
impl Default for HeaderMap {
|
||||||
#[inline]
|
#[inline]
|
||||||
fn default() -> Self {
|
fn default() -> Self {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue