Struct trust_dns_resolver::name_server::NameServer
source · pub struct NameServer<C: DnsHandle<Error = ResolveError> + Send, P: ConnectionProvider<Conn = C> + Send> { /* private fields */ }
Expand description
Specifies the details of a remote NameServer used for lookups
Implementations§
source§impl NameServer<TokioConnection, TokioConnectionProvider>
impl NameServer<TokioConnection, TokioConnectionProvider>
sourcepub fn new(
config: NameServerConfig,
options: ResolverOpts,
runtime: TokioHandle
) -> Self
pub fn new( config: NameServerConfig, options: ResolverOpts, runtime: TokioHandle ) -> Self
A shortcut for constructing a nameserver usable in the Tokio runtime
source§impl<C: DnsHandle<Error = ResolveError>, P: ConnectionProvider<Conn = C>> NameServer<C, P>
impl<C: DnsHandle<Error = ResolveError>, P: ConnectionProvider<Conn = C>> NameServer<C, P>
sourcepub fn new_with_provider(
config: NameServerConfig,
options: ResolverOpts,
conn_provider: P
) -> Self
pub fn new_with_provider( config: NameServerConfig, options: ResolverOpts, conn_provider: P ) -> Self
Construct a new Nameserver with the configuration and options. The connection provider will create UDP and TCP sockets
sourcepub fn trust_nx_responses(&self) -> bool
pub fn trust_nx_responses(&self) -> bool
Specifies that thie NameServer will treat negative responses as permanent failures and will not retry
Trait Implementations§
source§impl<C: Clone + DnsHandle<Error = ResolveError> + Send, P: Clone + ConnectionProvider<Conn = C> + Send> Clone for NameServer<C, P>
impl<C: Clone + DnsHandle<Error = ResolveError> + Send, P: Clone + ConnectionProvider<Conn = C> + Send> Clone for NameServer<C, P>
source§fn clone(&self) -> NameServer<C, P>
fn clone(&self) -> NameServer<C, P>
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<C: DnsHandle<Error = ResolveError>, P: ConnectionProvider<Conn = C>> Debug for NameServer<C, P>
impl<C: DnsHandle<Error = ResolveError>, P: ConnectionProvider<Conn = C>> Debug for NameServer<C, P>
source§impl<C, P> DnsHandle for NameServer<C, P>where
C: DnsHandle<Error = ResolveError>,
P: ConnectionProvider<Conn = C>,
impl<C, P> DnsHandle for NameServer<C, P>where C: DnsHandle<Error = ResolveError>, P: ConnectionProvider<Conn = C>,
§type Response = Pin<Box<dyn Stream<Item = Result<DnsResponse, ResolveError>> + Send, Global>>
type Response = Pin<Box<dyn Stream<Item = Result<DnsResponse, ResolveError>> + Send, Global>>
The associated response from the response stream, this should resolve to the Response messages
§type Error = ResolveError
type Error = ResolveError
Error of the response, generally this will be
ProtoError
source§fn is_verifying_dnssec(&self) -> bool
fn is_verifying_dnssec(&self) -> bool
Only returns true if and only if this DNS handle is validating DNSSec. Read more
source§fn send<R: Into<DnsRequest> + Unpin + Send + 'static>(
&mut self,
request: R
) -> Self::Response
fn send<R: Into<DnsRequest> + Unpin + Send + 'static>( &mut self, request: R ) -> Self::Response
Send a message via the channel in the client Read more
source§fn is_using_edns(&self) -> bool
fn is_using_edns(&self) -> bool
Allow for disabling EDNS
source§impl<C: DnsHandle<Error = ResolveError>, P: ConnectionProvider<Conn = C>> Ord for NameServer<C, P>
impl<C: DnsHandle<Error = ResolveError>, P: ConnectionProvider<Conn = C>> Ord for NameServer<C, P>
source§fn cmp(&self, other: &Self) -> Ordering
fn cmp(&self, other: &Self) -> Ordering
Custom implementation of Ord for NameServer which incorporates the performance of the connection into it’s ranking
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl<C: DnsHandle<Error = ResolveError>, P: ConnectionProvider<Conn = C>> PartialEq<NameServer<C, P>> for NameServer<C, P>
impl<C: DnsHandle<Error = ResolveError>, P: ConnectionProvider<Conn = C>> PartialEq<NameServer<C, P>> for NameServer<C, P>
source§impl<C: DnsHandle<Error = ResolveError>, P: ConnectionProvider<Conn = C>> PartialOrd<NameServer<C, P>> for NameServer<C, P>
impl<C: DnsHandle<Error = ResolveError>, P: ConnectionProvider<Conn = C>> PartialOrd<NameServer<C, P>> for NameServer<C, P>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl<C: DnsHandle<Error = ResolveError>, P: ConnectionProvider<Conn = C>> Eq for NameServer<C, P>
Auto Trait Implementations§
impl<C, P> !RefUnwindSafe for NameServer<C, P>
impl<C, P> Send for NameServer<C, P>
impl<C, P> Sync for NameServer<C, P>
impl<C, P> Unpin for NameServer<C, P>
impl<C, P> !UnwindSafe for NameServer<C, P>
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