Expand description
Traits for async send and receive of datagrams.
Datagrams are self-contained messages that are not split or combined when sent or received and instead always maintain their original message boundaries.
This is different from bytes sent or received over a byte stream (as in
[futures::AsyncRead
]), where one send can be split into multiple receives,
or multiple sends can be combined into one receive.
Structs§
- A future for
AsyncRecvExt::recv
. - A future for
AsyncRecvExt::recv_exact
. - A future for
AsyncRecvExt::recv_vectored
. - A future for
AsyncSendExt::send
. - A future for
AsyncSendExt::send_vectored
.