std: Add IntoRaw{Fd,Handle,Socket} traits#27064
Conversation
|
r? @aturon |
|
r? @brson (rust_highfive has picked a reviewer for you, use r? to override) |
|
@bors r+ |
|
📌 Commit dae6cda has been approved by |
|
☔ The latest upstream changes (presumably #27066) made this pull request unmergeable. Please resolve the merge conflicts. |
|
🔒 Merge conflict |
dae6cda to
07bedf9
Compare
|
@bors: r=brson 07bedf9 |
|
⌛ Testing commit 07bedf9 with merge fbf6ba7... |
|
💔 Test failed - auto-win-gnu-32-nopt-t |
07bedf9 to
1de1d92
Compare
|
@bors: r=brson On Fri, Jul 17, 2015 at 6:10 PM, bors notifications@github.com wrote:
|
|
📌 Commit 1de1d92 has been approved by |
|
⌛ Testing commit 1de1d92 with merge 76b710c... |
|
💔 Test failed - auto-win-gnu-32-opt |
1de1d92 to
5a22a2e
Compare
|
@bors: r=brson On Sat, Jul 18, 2015 at 4:03 AM, bors notifications@github.com wrote:
|
|
📌 Commit 5a22a2e has been approved by |
|
⌛ Testing commit 5a22a2e with merge 1116c90... |
|
💔 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.md Closes rust-lang#27062
5a22a2e to
7e9e389
Compare
|
@bors: r=brson On Mon, Jul 20, 2015 at 3:21 AM, bors notifications@github.com wrote:
|
|
📌 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.md Closes #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