[−][src]Struct chrootable_https::dns::Resolver
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>[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 DnsResolver for Resolver[src]
fn resolve(&self, name: &str, query_type: RecordType) -> Resolving[src]
impl PartialEq<Resolver> for Resolver[src]
impl Clone for Resolver[src]
fn clone(&self) -> Resolver[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Default for Resolver[src]
impl Debug for Resolver[src]
impl Serialize for Resolver[src]
fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer, [src]
__S: Serializer,
impl<'de> Deserialize<'de> for Resolver[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
Auto Trait Implementations
Blanket Implementations
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> From<T> for T[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Erased for T
impl<T> DeserializeOwned for T where
T: Deserialize<'de>, [src]
T: Deserialize<'de>,