Trait trust_dns_proto::udp::UdpSocket
source · pub trait UdpSocket: DnsUdpSocket {
// Required methods
fn connect<'async_trait>(
addr: SocketAddr
) -> Pin<Box<dyn Future<Output = Result<Self>> + Send + 'async_trait>>
where Self: 'async_trait;
fn connect_with_bind<'async_trait>(
addr: SocketAddr,
bind_addr: SocketAddr
) -> Pin<Box<dyn Future<Output = Result<Self>> + Send + 'async_trait>>
where Self: 'async_trait;
fn bind<'async_trait>(
addr: SocketAddr
) -> Pin<Box<dyn Future<Output = Result<Self>> + Send + 'async_trait>>
where Self: 'async_trait;
}
Expand description
Trait for UdpSocket
Required Methods§
sourcefn connect<'async_trait>(
addr: SocketAddr
) -> Pin<Box<dyn Future<Output = Result<Self>> + Send + 'async_trait>>where
Self: 'async_trait,
fn connect<'async_trait>( addr: SocketAddr ) -> Pin<Box<dyn Future<Output = Result<Self>> + Send + 'async_trait>>where Self: 'async_trait,
setups up a “client” udp connection that will only receive packets from the associated address
sourcefn connect_with_bind<'async_trait>(
addr: SocketAddr,
bind_addr: SocketAddr
) -> Pin<Box<dyn Future<Output = Result<Self>> + Send + 'async_trait>>where
Self: 'async_trait,
fn connect_with_bind<'async_trait>( addr: SocketAddr, bind_addr: SocketAddr ) -> Pin<Box<dyn Future<Output = Result<Self>> + Send + 'async_trait>>where Self: 'async_trait,
same as connect, but binds to the specified local address for sending address
Implementations on Foreign Types§
source§impl UdpSocket for UdpSocket
impl UdpSocket for UdpSocket
source§fn connect<'async_trait>(
addr: SocketAddr
) -> Pin<Box<dyn Future<Output = Result<Self>> + Send + 'async_trait>>where
Self: 'async_trait,
fn connect<'async_trait>( addr: SocketAddr ) -> Pin<Box<dyn Future<Output = Result<Self>> + Send + 'async_trait>>where Self: 'async_trait,
setups up a “client” udp connection that will only receive packets from the associated address
if the addr is ipv4 then it will bind local addr to 0.0.0.0:0, ipv6 [::]0
source§fn connect_with_bind<'async_trait>(
_addr: SocketAddr,
bind_addr: SocketAddr
) -> Pin<Box<dyn Future<Output = Result<Self>> + Send + 'async_trait>>where
Self: 'async_trait,
fn connect_with_bind<'async_trait>( _addr: SocketAddr, bind_addr: SocketAddr ) -> Pin<Box<dyn Future<Output = Result<Self>> + Send + 'async_trait>>where Self: 'async_trait,
same as connect, but binds to the specified local address for sending address