Struct trust_dns::udp::UdpClientConnection [] [src]

pub struct UdpClientConnection { /* fields omitted */ }

UDP based DNS Client connection

Use with trust_dns::client::Client impls

Methods

impl UdpClientConnection
[src]

Creates a new client connection.

Note this has side affects of binding the socket to 0.0.0.0 and starting the listening event_loop. Expect this to change in the future.

Arguments

  • name_server - address of the name server to use for queries

Trait Implementations

impl ClientConnection for UdpClientConnection
[src]

The associated DNS Message stream type.

Return the inner Futures items Read more