impl PartialEq for HeaderMap

This commit is contained in:
Nikolay Kim 2022-06-26 15:21:56 +06:00
parent d732657941
commit 08a577f730
3 changed files with 8 additions and 4 deletions

View file

@ -1,9 +1,13 @@
# Changes
## [0.1.0] - 2022-06-20
## [0.1.0] - 2022-06-26
* impl PartialEq for HeaderMap
* impl TryFrom<&str> for Value
* impl FromIterator for HeaderMap
## [0.1.0] - 2022-06-20
* Move http types to separate crate

View file

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

View file

@ -21,12 +21,12 @@ pub enum Either<A, B> {
/// `HeaderMap` is an multimap of [`HeaderName`] to values.
///
/// [`HeaderName`]: struct.HeaderName.html
#[derive(Debug, Clone)]
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct HeaderMap {
pub(crate) inner: HashMap<HeaderName, Value>,
}
#[derive(Debug, Clone)]
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum Value {
One(HeaderValue),
Multi(Vec<HeaderValue>),