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,5 @@
use std::task::{Context, Poll};
use std::{collections::VecDeque, future::Future, io, net::SocketAddr, pin::Pin};
use std::{collections::VecDeque, fmt, future::Future, io, net::SocketAddr, pin::Pin};
use ntex_bytes::{PoolId, PoolRef};
use ntex_io::{types, Io};
@ -61,6 +61,15 @@ impl<T> Clone for Connector<T> {
}
}
impl<T> fmt::Debug for Connector<T> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("Connector")
.field("resolver", &self.resolver)
.field("memory_pool", &self.pool)
.finish()
}
}
impl<T: Address, C: 'static> ServiceFactory<Connect<T>, C> for Connector<T> {
type Response = Io;
type Error = ConnectError;
@ -105,6 +114,14 @@ impl<'f, T: Address> ConnectServiceResponse<'f, T> {
}
}
impl<'f, T: Address> fmt::Debug for ConnectServiceResponse<'f, T> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("ConnectServiceResponse")
.field("pool", &self.pool)
.finish()
}
}
impl<'f, T: Address> Future for ConnectServiceResponse<'f, T> {
type Output = Result<Io, ConnectError>;