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,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 {