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,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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue