pub struct ConnectorService { /* private fields */ }
Available on crate feature
connect
only.Expand description
Combined resolver and TCP connector service.
Service implementation receives connection information, resolves DNS if required, and returns a TCP stream.
Trait Implementations§
Source§impl Clone for ConnectorService
impl Clone for ConnectorService
Source§fn clone(&self) -> ConnectorService
fn clone(&self) -> ConnectorService
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for ConnectorService
impl Default for ConnectorService
Source§fn default() -> ConnectorService
fn default() -> ConnectorService
Returns the “default value” for a type. Read more
Source§impl<R: Host> Service<ConnectInfo<R>> for ConnectorService
impl<R: Host> Service<ConnectInfo<R>> for ConnectorService
Source§type Response = Connection<R, TcpStream>
type Response = Connection<R, TcpStream>
Responses given by the service.
Source§type Error = ConnectError
type Error = ConnectError
Errors produced by the service when polling readiness or executing call.
Auto Trait Implementations§
impl Freeze for ConnectorService
impl !RefUnwindSafe for ConnectorService
impl !Send for ConnectorService
impl !Sync for ConnectorService
impl Unpin for ConnectorService
impl !UnwindSafe for ConnectorService
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<S, Req> IntoService<S, Req> for Swhere
S: Service<Req>,
impl<S, Req> IntoService<S, Req> for Swhere
S: Service<Req>,
Source§fn into_service(self) -> S
fn into_service(self) -> S
Convert to a
Service
Source§impl<S, Req> ServiceExt<Req> for Swhere
S: Service<Req>,
impl<S, Req> ServiceExt<Req> for Swhere
S: Service<Req>,
Source§fn map<F, R>(self, f: F) -> Map<Self, F, Req, R>
fn map<F, R>(self, f: F) -> Map<Self, F, Req, R>
Map this service’s output to a different type, returning a new service
of the resulting type. Read more