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

pub struct LookupIpFuture<C, E> where
    C: DnsHandle<Error = E> + 'static,
    E: Into<ResolveError> + From<ProtoError> + Error + Clone + Send + Unpin + '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

Implementations

impl<C, E> LookupIpFuture<C, E> where
    C: DnsHandle<Error = E> + 'static,
    E: Into<ResolveError> + From<ProtoError> + Error + Clone + Send + Unpin + 'static, 
[src]

pub fn lookup(
    names: Vec<Name>,
    strategy: LookupIpStrategy,
    client_cache: CachingClient<C, E>,
    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, E> Future for LookupIpFuture<C, E> where
    C: DnsHandle<Error = E> + 'static,
    E: Into<ResolveError> + From<ProtoError> + Error + Clone + Send + Unpin + 'static, 
[src]

type Output = Result<LookupIp, ResolveError>

The type of value produced on completion.

Auto Trait Implementations

impl<C, E> !RefUnwindSafe for LookupIpFuture<C, E>[src]

impl<C, E> Send for LookupIpFuture<C, E>[src]

impl<C, E> !Sync for LookupIpFuture<C, E>[src]

impl<C, E> Unpin for LookupIpFuture<C, E>[src]

impl<C, E> !UnwindSafe for LookupIpFuture<C, E>[src]

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> FutureExt for T where
    T: Future + ?Sized
[src]

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

impl<F> IntoFuture for F where
    F: Future
[src]

type Output = <F as Future>::Output

🔬 This is a nightly-only experimental API. (into_future)

The output that the future will produce on completion.

type Future = F

🔬 This is a nightly-only experimental API. (into_future)

Which kind of future are we turning this into?

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<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<Fut> TryFutureExt for Fut where
    Fut: TryFuture + ?Sized
[src]

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>,