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

pub struct BasicClientHandle { /* 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<CC> Client<BasicClientHandle> for SyncClient<CC> where
    CC: ClientConnection
[src]

[src]

Return the inner Futures items Read more

[src]

A classic DNS query, i.e. does not perform any DNSSec operations Read more

[src]

Sends a NOTIFY message to the remote system Read more

[src]

Sends a record to create on the server, this will fail if the record exists (atomicity depends on the server) Read more

[src]

Appends a record to an existing rrset, optionally require the rrset to exist (atomicity depends on the server) Read more

[src]

Compares and if it matches, swaps it for the new value (atomicity depends on the server) Read more

[src]

Deletes a record (by rdata) from an rrset, optionally require the rrset to exist. Read more

[src]

Deletes an entire rrset, optionally require the rrset to exist. Read more

[src]

Deletes all records at the specified name Read more

impl Clone for BasicClientHandle
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl DnsHandle for BasicClientHandle
[src]

The associated error type returned by future send operations

Important traits for Box<W>
[src]

Send a message via the channel in the client Read more

[src]

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

Important traits for Box<W>
[src]

A classic DNS query Read more

Auto Trait Implementations