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

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