Uh oh!
There was an error while loading. Please reload this page.
std: Add IntoRaw{Fd,Handle,Socket} traits - #27064
Conversation
alexcrichton
commented
Jul 16, 2015
r? @aturon |
rust-highfive
commented
Jul 16, 2015
r? @brson (rust_highfive has picked a reviewer for you, use r? to override) |
brson
commented
Jul 16, 2015
@bors r+ |
bors
commented
Jul 16, 2015
📌 Commit dae6cda has been approved by |
bors
commented
Jul 17, 2015
☔ The latest upstream changes (presumably #27066) made this pull request unmergeable. Please resolve the merge conflicts. |
bors
commented
Jul 17, 2015
🔒 Merge conflict |
alexcrichton
commented
Jul 17, 2015
@bors: r=brson 07bedf9 |
bors
commented
Jul 18, 2015
⌛ Testing commit 07bedf9 with merge fbf6ba7... |
bors
commented
Jul 18, 2015
💔 Test failed - auto-win-gnu-32-nopt-t |
alexcrichton
commented
Jul 18, 2015
@bors: r=brson On Fri, Jul 17, 2015 at 6:10 PM, bors notifications@github.com wrote:
|
bors
commented
Jul 18, 2015
📌 Commit 1de1d92 has been approved by |
bors
commented
Jul 18, 2015
⌛ Testing commit 1de1d92 with merge 76b710c... |
bors
commented
Jul 18, 2015
💔 Test failed - auto-win-gnu-32-opt |
alexcrichton
commented
Jul 20, 2015
@bors: r=brson On Sat, Jul 18, 2015 at 4:03 AM, bors notifications@github.com wrote:
|
bors
commented
Jul 20, 2015
📌 Commit 5a22a2e has been approved by |
bors
commented
Jul 20, 2015
⌛ Testing commit 5a22a2e with merge 1116c90... |
bors
commented
Jul 20, 2015
💔 Test failed - auto-win-gnu-32-opt |
This commit is an implementation of [RFC 1174][rfc] which adds three new traits to the standard library: * `IntoRawFd` - implemented on Unix for all I/O types (files, sockets, etc) * `IntoRawHandle` - implemented on Windows for files, processes, etc * `IntoRawSocket` - implemented on Windows for networking types [rfc]: https://github.com/rust-lang/rfcs/blob/master/text/1174-into-raw-fd-socket-handle-traits.mdClosesrust-lang#27062
alexcrichton
commented
Jul 20, 2015
@bors: r=brson On Mon, Jul 20, 2015 at 3:21 AM, bors notifications@github.com wrote:
|
bors
commented
Jul 20, 2015
📌 Commit 7e9e389 has been approved by |
This commit is an implementation of [RFC 1174][rfc] which adds three new traits to the standard library: * `IntoRawFd` - implemented on Unix for all I/O types (files, sockets, etc) * `IntoRawHandle` - implemented on Windows for files, processes, etc * `IntoRawSocket` - implemented on Windows for networking types [rfc]: https://github.com/rust-lang/rfcs/blob/master/text/1174-into-raw-fd-socket-handle-traits.mdCloses#27062
This commit is an implementation of RFC 1174 which adds three new traits
to the standard library:
IntoRawFd- implemented on Unix for all I/O types (files, sockets, etc)IntoRawHandle- implemented on Windows for files, processes, etcIntoRawSocket- implemented on Windows for networking typesCloses#27062