-
Notifications
You must be signed in to change notification settings - Fork 12.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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