I am trying to use turmoil to simulate a UDP load balancer, but I am not able to use turmoil::net::UdpSocket instead of tokio::net::UdpSocket without rewriting components of the load balancer.
Two issues I have run into so far is turmoil::net::UdpSocket::send is private and turmoil::net::UdpSocket::connect does not exist, while in tokio::net::UdpSocket, connect and send are both public methods of UdpSocket.