You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 9, 2019. It is now read-only.
Part of my thoughts with rustasync/runtime#101 and #3 was that runtime::net::UdpSocket::send_to could be deprecated and replaced with async_datagram::AsyncDatagramExt::send_to (or become an inherent method that just forwards to the trait method).
Unfortunately that would lose out on being able to use impl IntoSocketAddrs for the destination address. Is there some way a change to the AsyncDatagram trait, the extension trait, and/or the implementation for runtime::net::UdpSocket could allow using this?
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Part of my thoughts with rustasync/runtime#101 and #3 was that
runtime::net::UdpSocket::send_to
could be deprecated and replaced withasync_datagram::AsyncDatagramExt::send_to
(or become an inherent method that just forwards to the trait method).Unfortunately that would lose out on being able to use
impl IntoSocketAddrs
for the destination address. Is there some way a change to theAsyncDatagram
trait, the extension trait, and/or the implementation forruntime::net::UdpSocket
could allow using this?The text was updated successfully, but these errors were encountered: