mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07: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
|
||||
|
||||
## [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
|
||||
|
|
|
@ -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"]
|
||||
|
|
|
@ -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>),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue