[][src]Struct hyper::client::connect::dns::GaiResolver

pub struct GaiResolver { /* fields omitted */ }

A resolver using blocking getaddrinfo calls in a threadpool.

Implementations

impl GaiResolver[src]

pub fn new(threads: usize) -> Self[src]

Construct a new GaiResolver.

Takes number of DNS worker threads.

pub fn new_with_executor<E: 'static>(executor: E) -> Self where
    E: Executor<GaiTask> + Send + Sync
[src]

Construct a new GaiResolver with a shared thread pool executor.

Takes an executor to run blocking getaddrinfo tasks on.

Trait Implementations

impl Clone for GaiResolver[src]

impl Debug for GaiResolver[src]

impl Resolve for GaiResolver[src]

type Addrs = GaiAddrs

The set of IP addresses to try to connect to.

type Future = GaiFuture

A Future of the resolved set of addresses.

Auto Trait Implementations

impl !RefUnwindSafe for GaiResolver

impl Send for GaiResolver

impl Sync for GaiResolver

impl Unpin for GaiResolver

impl !UnwindSafe for GaiResolver

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