Add PartialOrd and Ord implementation for std::net::SocketAddr #53863
Add PartialOrd and Ord implementation for std::net::SocketAddr #53863In-line wants to merge 2 commits intorust-lang:masterfrom In-line:patch-1
PartialOrd and Ord implementation for std::net::SocketAddr #53863Conversation
|
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @kennytm (or someone else) soon. If any changes to this PR are deemed necessary, please add them as extra commits. This ensures that the reviewer can see what has changed since they last reviewed the code. Due to the way GitHub handles out-of-date commits, this should also make it reasonably obvious what issues have or haven't been addressed. Large or tricky changes may require several passes of review and changes. Please see the contribution instructions for more information. |
|
The job Click to expand the log.I'm a bot! I can only do what humans tell me to, so if this was not helpful or you have suggestions for improvements, please ping or otherwise contact |
|
The job Click to expand the log.I'm a bot! I can only do what humans tell me to, so if this was not helpful or you have suggestions for improvements, please ping or otherwise contact |
Implement PartialOrd and Ord for SocketAddr* The implementation is mostly the same as the one found in `IpAddr` (other than adding comparison for ports, of course). Continues rust-lang#53788 and rust-lang#53863 Fixes rust-lang#53710
Fixes #53710 continuation of #53788