rust/library/std
Lukas Kalbertodt 6293dca1e8
Change Debug impl of SocketAddr and IpAddr to match their Display output
This has already been done for `SocketAddrV4`, `SocketAddrV6`,
`IpAddrV4` and `IpAddrV6`. I don't see a point to keep the rather bad
to read derived impl, especially when pretty printing:

    V4(
        127.0.0.1
    )

From the `Display`, one can easily and unambiguously see if it's V4 or
V6. Using `Display` as `Debug` is very convenient for configuration
structs (e.g. for webservers) that often just have a `derive(Debug)`
and are printed that way to the user.
2020-07-28 17:48:47 +02:00
..
benches mv std libs to library/ 2020-07-27 19:51:13 -05:00
src Change Debug impl of SocketAddr and IpAddr to match their Display output 2020-07-28 17:48:47 +02:00
tests mv std libs to library/ 2020-07-27 19:51:13 -05:00
build.rs mv std libs to library/ 2020-07-27 19:51:13 -05:00
Cargo.toml mv std libs to library/ 2020-07-27 19:51:13 -05:00