pub struct Connector { /* private fields */ }
Expand description
Tcp connector
Implementations§
source§impl Connector
impl Connector
sourcepub fn new(cfg: ResolverConfig, opts: ResolverOpts) -> Self
pub fn new(cfg: ResolverConfig, opts: ResolverOpts) -> Self
Create new connector with resolver configuration
sourcepub fn with_resolver(
resolver: Resolver<Connect>
) -> impl Service<Request = Connect, Response = (Connect, TcpStream), Error = ConnectorError> + Clone
pub fn with_resolver(
resolver: Resolver<Connect>
) -> impl Service<Request = Connect, Response = (Connect, TcpStream), Error = ConnectorError> + Clone
Create new connector with custom resolver
sourcepub fn new_service_with_config<E>(
cfg: ResolverConfig,
opts: ResolverOpts
) -> impl NewService<Request = Connect, Response = (Connect, TcpStream), Error = ConnectorError, InitError = E> + Clone
pub fn new_service_with_config<E>(
cfg: ResolverConfig,
opts: ResolverOpts
) -> impl NewService<Request = Connect, Response = (Connect, TcpStream), Error = ConnectorError, InitError = E> + Clone
Create new default connector service
Trait Implementations§
source§impl Service for Connector
impl Service for Connector
§type Error = ConnectorError
type Error = ConnectorError
Errors produced by the service.
source§fn poll_ready(&mut self) -> Poll<(), Self::Error>
fn poll_ready(&mut self) -> Poll<(), Self::Error>
Returns
Ready
when the service is able to process requests. Read moreAuto Trait Implementations§
impl !RefUnwindSafe for Connector
impl Send for Connector
impl Sync for Connector
impl Unpin for Connector
impl !UnwindSafe for Connector
Blanket Implementations§
source§impl<T> IntoService<T> for Twhere
T: Service,
impl<T> IntoService<T> for Twhere
T: Service,
source§fn into_service(self) -> T
fn into_service(self) -> T
Convert to a
Service
source§impl<T> ServiceExt for Twhere
T: Service + ?Sized,
impl<T> ServiceExt for Twhere
T: Service + ?Sized,
source§fn apply<S, I, F, R>(
self,
service: I,
f: F
) -> AndThen<Self, Apply<S, F, R, Self::Response>>where
Self: Sized,
S: Service,
S::Error: Into<<R::Future as Future>::Error>,
I: IntoService<S>,
F: Fn(Self::Response, &mut S) -> R,
R: IntoFuture<Error = Self::Error>,
fn apply<S, I, F, R>(
self,
service: I,
f: F
) -> AndThen<Self, Apply<S, F, R, Self::Response>>where
Self: Sized,
S: Service,
S::Error: Into<<R::Future as Future>::Error>,
I: IntoService<S>,
F: Fn(Self::Response, &mut S) -> R,
R: IntoFuture<Error = Self::Error>,
Apply function to specified service and use it as a next service in
chain. Read more
source§fn and_then<F, B>(self, service: F) -> AndThen<Self, B>where
Self: Sized,
F: IntoService<B>,
B: Service<Request = Self::Response, Error = Self::Error>,
fn and_then<F, B>(self, service: F) -> AndThen<Self, B>where
Self: Sized,
F: IntoService<B>,
B: Service<Request = Self::Response, Error = Self::Error>,
Call another service after call to this one has resolved successfully. Read more
source§fn then<B>(self, service: B) -> Then<Self, B>where
Self: Sized,
B: Service<Request = Result<Self::Response, Self::Error>, Error = Self::Error>,
fn then<B>(self, service: B) -> Then<Self, B>where
Self: Sized,
B: Service<Request = Result<Self::Response, Self::Error>, Error = Self::Error>,
Chain on a computation for when a call to the service finished,
passing the result of the call to the next service
B
. Read more