@@ -110,7 +110,7 @@ impl IntoRawHandle for process::ChildStderr {
110
110
///
111
111
/// The provided handle must be asynchronous, as reading and
112
112
/// writing from and to it is implemented using asynchronous APIs.
113
- #[ stable( feature = "io_safety " , since = "1.63.0 " ) ]
113
+ #[ stable( feature = "child_stream_from_fd " , since = "CURRENT_RUSTC_VERSION " ) ]
114
114
impl From < OwnedHandle > for process:: ChildStdin {
115
115
fn from ( handle : OwnedHandle ) -> process:: ChildStdin {
116
116
let handle = sys:: handle:: Handle :: from_inner ( handle) ;
@@ -123,7 +123,7 @@ impl From<OwnedHandle> for process::ChildStdin {
123
123
///
124
124
/// The provided handle must be asynchronous, as reading and
125
125
/// writing from and to it is implemented using asynchronous APIs.
126
- #[ stable( feature = "io_safety " , since = "1.63.0 " ) ]
126
+ #[ stable( feature = "child_stream_from_fd " , since = "CURRENT_RUSTC_VERSION " ) ]
127
127
impl From < OwnedHandle > for process:: ChildStdout {
128
128
fn from ( handle : OwnedHandle ) -> process:: ChildStdout {
129
129
let handle = sys:: handle:: Handle :: from_inner ( handle) ;
@@ -136,7 +136,7 @@ impl From<OwnedHandle> for process::ChildStdout {
136
136
///
137
137
/// The provided handle must be asynchronous, as reading and
138
138
/// writing from and to it is implemented using asynchronous APIs.
139
- #[ stable( feature = "io_safety " , since = "1.63.0 " ) ]
139
+ #[ stable( feature = "child_stream_from_fd " , since = "CURRENT_RUSTC_VERSION " ) ]
140
140
impl From < OwnedHandle > for process:: ChildStderr {
141
141
fn from ( handle : OwnedHandle ) -> process:: ChildStderr {
142
142
let handle = sys:: handle:: Handle :: from_inner ( handle) ;
0 commit comments