[][src]Struct trust_dns_resolver::lookup_ip::LookupIpFuture

pub struct LookupIpFuture<C = LookupEither<ConnectionHandle, StandardConnection>> where
    C: DnsHandle + 'static, 
{ /* fields omitted */ }

The Future returned from [AsyncResolver] when performing an A or AAAA lookup.

This type isn't necessarily something that should be used by users, see the default TypeParameters are generally correct

Methods

impl<C> LookupIpFuture<C> where
    C: DnsHandle + 'static, 
[src]

pub fn lookup(
    names: Vec<Name>,
    strategy: LookupIpStrategy,
    client_cache: CachingClient<C>,
    options: DnsRequestOptions,
    hosts: Option<Arc<Hosts>>,
    finally_ip_addr: Option<RData>
) -> Self
[src]

Perform a lookup from a hostname to a set of IPs

Arguments

  • names - a set of DNS names to attempt to resolve, they will be attempted in queue order, i.e. the first is names.pop(). Upon each failure, the next will be attempted.
  • strategy - the lookup IP strategy to use
  • client_cache - cache with a connection to use for performing all lookups

Trait Implementations

impl<C: DnsHandle + Sync + 'static> Future for LookupIpFuture<C>[src]

type Output = Result<LookupIp, ResolveError>

The type of value produced on completion.

Auto Trait Implementations

impl<C> Send for LookupIpFuture<C>

impl<C = LookupEither<ConnectionHandle, StandardConnection>> !Sync for LookupIpFuture<C>

impl<C> Unpin for LookupIpFuture<C>

impl<C = LookupEither<ConnectionHandle, StandardConnection>> !UnwindSafe for LookupIpFuture<C>

impl<C = LookupEither<ConnectionHandle, StandardConnection>> !RefUnwindSafe for LookupIpFuture<C>

Blanket Implementations

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

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

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

type Error = !

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<F, T, E> TryFuture for F where
    F: Future<Output = Result<T, E>> + ?Sized
[src]

type Ok = T

The type of successful values yielded by this future

type Error = E

The type of failures yielded by this future

impl<T> FutureExt for T where
    T: Future + ?Sized
[src]

impl<Fut> TryFutureExt for Fut where
    Fut: TryFuture + ?Sized
[src]

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