mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 13:27:39 +03:00
impl PartialEq for HeaderMap
This commit is contained in:
parent
d732657941
commit
08a577f730
3 changed files with 8 additions and 4 deletions
|
@ -1,9 +1,13 @@
|
||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
## [0.1.0] - 2022-06-20
|
## [0.1.0] - 2022-06-26
|
||||||
|
|
||||||
|
* impl PartialEq for HeaderMap
|
||||||
|
|
||||||
* impl TryFrom<&str> for Value
|
* impl TryFrom<&str> for Value
|
||||||
|
|
||||||
* impl FromIterator for HeaderMap
|
* impl FromIterator for HeaderMap
|
||||||
|
|
||||||
|
## [0.1.0] - 2022-06-20
|
||||||
|
|
||||||
* Move http types to separate crate
|
* Move http types to separate crate
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ntex-http"
|
name = "ntex-http"
|
||||||
version = "0.1.0"
|
version = "0.1.1"
|
||||||
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"]
|
||||||
|
|
|
@ -21,12 +21,12 @@ pub enum Either<A, B> {
|
||||||
/// `HeaderMap` is an multimap of [`HeaderName`] to values.
|
/// `HeaderMap` is an multimap of [`HeaderName`] to values.
|
||||||
///
|
///
|
||||||
/// [`HeaderName`]: struct.HeaderName.html
|
/// [`HeaderName`]: struct.HeaderName.html
|
||||||
#[derive(Debug, Clone)]
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
pub struct HeaderMap {
|
pub struct HeaderMap {
|
||||||
pub(crate) inner: HashMap<HeaderName, Value>,
|
pub(crate) inner: HashMap<HeaderName, Value>,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, Clone)]
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
pub enum Value {
|
pub enum Value {
|
||||||
One(HeaderValue),
|
One(HeaderValue),
|
||||||
Multi(Vec<HeaderValue>),
|
Multi(Vec<HeaderValue>),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue