rust/src/libstd/net
Corey Farwell 1d67bb9a0c Rollup merge of #39372 - seanmonstar:more-addr-froms, r=alexcrichton
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.
2017-02-07 22:54:21 -05:00
..
addr.rs add From<(I, u16)> for SocketAddr where I: Into<IpAddr> 2017-01-31 15:07:22 -08:00
ip.rs Rollup merge of #39372 - seanmonstar:more-addr-froms, r=alexcrichton 2017-02-07 22:54:21 -05:00
mod.rs Fix a few impl stability attributes 2017-01-29 13:31:47 +00:00
parser.rs std: Correct stability attributes for some implementations 2016-10-01 23:58:14 +01:00
tcp.rs Rollup merge of #38983 - APTy:udp-peek, r=aturon 2017-02-05 09:14:38 -05:00
test.rs travis: Get an emscripten builder online 2017-01-19 13:54:19 -08:00
udp.rs Rollup merge of #38983 - APTy:udp-peek, r=aturon 2017-02-05 09:14:38 -05:00