Struct trust_dns::client::BasicClientHandle[][src]

pub struct BasicClientHandle<Resp> where
    Resp: Future<Item = DnsResponse, Error = ProtoError> + 'static + Send
{ /* fields omitted */ }

Root ClientHandle implementaton returned by ClientFuture

This can be used directly to perform queries. See trust_dns::client::SecureClientHandle for a DNSSEc chain validator.

Trait Implementations

impl<Resp> DnsHandle for BasicClientHandle<Resp> where
    Resp: Future<Item = DnsResponse, Error = ProtoError> + 'static + Send
[src]

The associated response from the response future, this should resolve to the Response message

Send a message via the channel in the client Read more

Ony returns true if and only if this DNS handle is validating DNSSec. Read more

A classic DNS query Read more

impl<Resp> Clone for BasicClientHandle<Resp> where
    Resp: Future<Item = DnsResponse, Error = ProtoError> + 'static + Send
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl<Resp> Send for BasicClientHandle<Resp>

impl<Resp> Sync for BasicClientHandle<Resp>