pub trait AsyncDgramSend { // Required method fn poll_send( &self, cx: &mut Context<'_>, buf: &[u8], ) -> Poll<Result<usize, Error>>; }
Send a datagram packet asynchronously.
Polled send function.