A few ergonomic From impls for SocketAddr/IpAddr My main motivation is removing things like this: `"127.0.0.1:3000".parse().unwrap()`. Instead, this now works: `SocketAddr::from(([127, 0, 0, 1], 3000))` or even `([127, 0, 0, 1], 3000).into())` when passing to a function. |
||
|---|---|---|
| .. | ||
| addr.rs | ||
| ip.rs | ||
| mod.rs | ||
| parser.rs | ||
| tcp.rs | ||
| test.rs | ||
| udp.rs | ||