[−][src]Module tokio::net::udp
UDP bindings for tokio
.
The main struct for UDP is the UdpSocket
, which represents a UDP socket.
Reading and writing to it can be done using futures, which return the
RecvDgram
and SendDgram
structs respectively.
For convenience it's also possible to convert raw datagrams into higher-level frames.
Structs
RecvDgram |
A future used to receive a datagram from a UDP socket. |
SendDgram |
A future used to write the entire contents of some data to a UDP socket. |
UdpFramed |
A unified |
UdpSocket |
An I/O object representing a UDP socket. |