mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
parent
19cc8ab315
commit
02e111d373
96 changed files with 855 additions and 198 deletions
|
@ -1,5 +1,9 @@
|
|||
# Changes
|
||||
|
||||
## [0.1.10] - 2023-09-11
|
||||
|
||||
* Add missing fmt::Debug impls
|
||||
|
||||
## [0.1.9] - 2022-12-09
|
||||
|
||||
* Add helper method HeaderValue::as_shared()
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "ntex-http"
|
||||
version = "0.1.9"
|
||||
version = "0.1.10"
|
||||
authors = ["ntex contributors <team@ntex.rs>"]
|
||||
description = "Http types for ntex framework"
|
||||
keywords = ["network", "framework", "async", "futures"]
|
||||
|
@ -20,4 +20,4 @@ http = "0.2"
|
|||
log = "0.4"
|
||||
fxhash = "0.2.1"
|
||||
itoa = "1.0.4"
|
||||
ntex-bytes = "0.1.17"
|
||||
ntex-bytes = "0.1.19"
|
||||
|
|
|
@ -36,7 +36,7 @@ enum ErrorKind {
|
|||
}
|
||||
|
||||
impl fmt::Debug for Error {
|
||||
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
||||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||
f.debug_tuple("ntex_http::Error")
|
||||
// Skip the noise of the ErrorKind enum
|
||||
.field(&self.get_ref())
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
//! Http protocol support.
|
||||
#![deny(rust_2018_idioms, unreachable_pub, missing_debug_implementations)]
|
||||
|
||||
pub mod error;
|
||||
mod map;
|
||||
mod value;
|
||||
|
|
|
@ -62,6 +62,7 @@ impl Value {
|
|||
}
|
||||
}
|
||||
|
||||
#[derive(Debug)]
|
||||
pub struct ValueIntoIter {
|
||||
value: Value,
|
||||
}
|
||||
|
@ -444,6 +445,7 @@ impl TryFrom<&str> for Value {
|
|||
}
|
||||
}
|
||||
|
||||
#[derive(Debug)]
|
||||
pub struct GetAll<'a> {
|
||||
idx: usize,
|
||||
item: Option<&'a Value>,
|
||||
|
@ -477,6 +479,7 @@ impl<'a> Iterator for GetAll<'a> {
|
|||
}
|
||||
}
|
||||
|
||||
#[derive(Debug)]
|
||||
pub struct Keys<'a>(hash_map::Keys<'a, HeaderName, Value>);
|
||||
|
||||
impl<'a> Iterator for Keys<'a> {
|
||||
|
@ -497,6 +500,7 @@ impl<'a> IntoIterator for &'a HeaderMap {
|
|||
}
|
||||
}
|
||||
|
||||
#[derive(Debug)]
|
||||
pub struct Iter<'a> {
|
||||
idx: usize,
|
||||
current: Option<(&'a HeaderName, &'a VecDeque<HeaderValue>)>,
|
||||
|
|
|
@ -512,7 +512,7 @@ fn is_valid(b: u8) -> bool {
|
|||
impl Error for InvalidHeaderValue {}
|
||||
|
||||
impl fmt::Debug for InvalidHeaderValue {
|
||||
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
||||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||
f.debug_struct("InvalidHeaderValue")
|
||||
// skip _priv noise
|
||||
.finish()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue