Add missing fmt::Debug impls (#224)

* Add missing fmt::Debug impls
This commit is contained in:
Nikolay Kim 2023-09-11 21:43:07 +06:00 committed by GitHub
parent 19cc8ab315
commit 02e111d373
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
96 changed files with 855 additions and 198 deletions

View file

@ -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()

View file

@ -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"

View file

@ -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())

View file

@ -1,4 +1,6 @@
//! Http protocol support.
#![deny(rust_2018_idioms, unreachable_pub, missing_debug_implementations)]
pub mod error;
mod map;
mod value;

View file

@ -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>)>,

View file

@ -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()