[][src]Struct public_ip::dns::DnsResolver

pub struct DnsResolver { /* fields omitted */ }

The DNS resolver

Implementations

impl DnsResolver[src]

pub fn new<N, I>(
    name: N,
    servers: I,
    method: QueryMethod
) -> Result<Self, DnsResolutionError> where
    N: Into<Cow<'static, str>>,
    I: IntoIterator<Item = IpAddr>, 
[src]

Create new DNS resolver

Trait Implementations

impl Clone for DnsResolver[src]

impl Debug for DnsResolver[src]

impl<C> Resolver<C> for DnsResolver where
    C: DnsResolverContext
[src]

type Error = DnsResolutionError

Error produced while attempting to resolve

type Stream = BoxStream<'static, Result<Self::Resolution, Self::Error>>

The resolution stream produced by the resolver

type Resolution = DnsResolution

A successfully produced resolution

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

impl<T> ResolutionError for T where
    T: Send + Any + Debug
[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<V, T> VZip<V> for T where
    V: MultiLane<T>,