pub struct GenericConnectionProvider<R: RuntimeProvider>(_);
Expand description
Standard connection implements the default mechanism for creating new Connections
Implementations
sourceimpl<R: RuntimeProvider> GenericConnectionProvider<R>
impl<R: RuntimeProvider> GenericConnectionProvider<R>
Trait Implementations
sourceimpl<R: Clone + RuntimeProvider> Clone for GenericConnectionProvider<R> where
R::Handle: Clone,
impl<R: Clone + RuntimeProvider> Clone for GenericConnectionProvider<R> where
R::Handle: Clone,
sourcefn clone(&self) -> GenericConnectionProvider<R>
fn clone(&self) -> GenericConnectionProvider<R>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<R> ConnectionProvider for GenericConnectionProvider<R> where
R: RuntimeProvider,
<R as RuntimeProvider>::Tcp: Connect,
impl<R> ConnectionProvider for GenericConnectionProvider<R> where
R: RuntimeProvider,
<R as RuntimeProvider>::Tcp: Connect,
sourcefn new_connection(
&self,
config: &NameServerConfig,
options: &ResolverOpts
) -> Self::FutureConn
fn new_connection(
&self,
config: &NameServerConfig,
options: &ResolverOpts
) -> Self::FutureConn
Constructs an initial constructor for the ConnectionHandle to be used to establish a future connection.
type Conn = GenericConnection
type Conn = GenericConnection
The handle to the connect for sending DNS requests.
type FutureConn = ConnectionFuture<R>
type FutureConn = ConnectionFuture<R>
Ths future is responsible for spawning any background tasks as necessary
type Time = <R as RuntimeProvider>::Timer
type Time = <R as RuntimeProvider>::Timer
The type used to set up timeout futures
Auto Trait Implementations
impl<R> RefUnwindSafe for GenericConnectionProvider<R> where
<R as RuntimeProvider>::Handle: RefUnwindSafe,
impl<R> Send for GenericConnectionProvider<R>
impl<R> Sync for GenericConnectionProvider<R>
impl<R> Unpin for GenericConnectionProvider<R>
impl<R> UnwindSafe for GenericConnectionProvider<R> where
<R as RuntimeProvider>::Handle: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
fn vzip(self) -> V
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more