We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Noticed that async_std::net::UdpSocket does not implement try_clone() function, which is implemented in standard lib.
async_std::net::UdpSocket
try_clone()
Tested out briefly on a local env and it seems to me that something like this would do the trick:
pub fn try_clone(&self) -> UdpSocket { UdpSocket::from(self.watcher.get_ref().try_clone().expect("oops")) }
Is it a good idea to craft a PR, or is there some particular reason why this is not implemented?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Noticed that
async_std::net::UdpSocket
does not implementtry_clone()
function, which is implemented in standard lib.Tested out briefly on a local env and it seems to me that something like this would do the trick:
Is it a good idea to craft a PR, or is there some particular reason why this is not implemented?
The text was updated successfully, but these errors were encountered: