mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 21:37:58 +03:00
parent
19cc8ab315
commit
02e111d373
96 changed files with 855 additions and 198 deletions
|
@ -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>;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue