pub struct ResolverService { /* private fields */ }
Expand description
DNS resolver service.
Implementations§
Trait Implementations§
source§impl Clone for ResolverService
impl Clone for ResolverService
source§fn clone(&self) -> ResolverService
fn clone(&self) -> ResolverService
Returns a copy of the value. Read more
1.6.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 ResolverService
impl Default for ResolverService
source§fn default() -> ResolverService
fn default() -> ResolverService
Returns the “default value” for a type. Read more
source§impl<R: Host> Service<ConnectInfo<R>> for ResolverService
impl<R: Host> Service<ConnectInfo<R>> for ResolverService
source§type Response = ConnectInfo<R>
type Response = ConnectInfo<R>
Responses given by the service.
source§type Error = ConnectError
type Error = ConnectError
Errors produced by the service when polling readiness or executing call.
source§fn poll_ready(&self, _: &mut Context<'_>) -> Poll<Result<(), Self::Error>>
fn poll_ready(&self, _: &mut Context<'_>) -> Poll<Result<(), Self::Error>>
Returns
Ready
when the service is able to process requests. Read moresource§fn call(&self, req: ConnectInfo<R>) -> Self::Future
fn call(&self, req: ConnectInfo<R>) -> Self::Future
Process the request and return the response asynchronously. Read more
Auto Trait Implementations§
impl Freeze for ResolverService
impl !RefUnwindSafe for ResolverService
impl !Send for ResolverService
impl !Sync for ResolverService
impl Unpin for ResolverService
impl !UnwindSafe for ResolverService
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<S, Req> IntoService<S, Req> for Swhere
S: Service<Req>,
impl<S, Req> IntoService<S, Req> for Swhere
S: Service<Req>,
§fn into_service(self) -> S
fn into_service(self) -> S
Convert to a
Service