[][src]Struct sn0int::web::Resolver

pub struct Resolver {
    pub ns: Vec<SocketAddr>,
    pub tcp: bool,
    pub timeout: Option<Duration>,
}

An asynchronous DNS resolver.

Fields

ns: Vec<SocketAddr>tcp: booltimeout: Option<Duration>

Methods

impl Resolver[src]

pub fn empty() -> Resolver[src]

Build a resolver with no nameservers

pub fn cloudflare() -> Resolver[src]

Creates a new resolver using the CloudFlare Authoritative DNS service.

pub fn google() -> Resolver[src]

Creates a new resolver using the Google Public DNS service.

pub fn from_system() -> Result<Resolver, Error>[src]

Creates a new resolver from /etc/resolv.conf.

pub fn timeout(&mut self, timeout: Option<Duration>)[src]

Sets a timeout within which each DNS query must complete.

Default setting is no timeout.

Trait Implementations

impl Debug for Resolver[src]

impl Serialize for Resolver[src]

impl DnsResolver for Resolver[src]

impl Default for Resolver[src]

impl<'de> Deserialize<'de> for Resolver[src]

impl PartialEq<Resolver> for Resolver[src]

impl StructuralPartialEq for Resolver[src]

impl Clone for Resolver[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> IntoSql for T[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> SetParameter for T