@@ -110,7 +110,7 @@ impl IntoRawHandle for process::ChildStderr {
110110///
111111/// The provided handle must be asynchronous, as reading and
112112/// 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 " ) ]
114114impl From < OwnedHandle > for process:: ChildStdin {
115115 fn from ( handle : OwnedHandle ) -> process:: ChildStdin {
116116 let handle = sys:: handle:: Handle :: from_inner ( handle) ;
@@ -123,7 +123,7 @@ impl From<OwnedHandle> for process::ChildStdin {
123123///
124124/// The provided handle must be asynchronous, as reading and
125125/// 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 " ) ]
127127impl From < OwnedHandle > for process:: ChildStdout {
128128 fn from ( handle : OwnedHandle ) -> process:: ChildStdout {
129129 let handle = sys:: handle:: Handle :: from_inner ( handle) ;
@@ -136,7 +136,7 @@ impl From<OwnedHandle> for process::ChildStdout {
136136///
137137/// The provided handle must be asynchronous, as reading and
138138/// 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 " ) ]
140140impl From < OwnedHandle > for process:: ChildStderr {
141141 fn from ( handle : OwnedHandle ) -> process:: ChildStderr {
142142 let handle = sys:: handle:: Handle :: from_inner ( handle) ;
0 commit comments