We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11dcc5a commit fbf3bdcCopy full SHA for fbf3bdc
library/std/src/sys/anonymous_pipe/unsupported.rs
@@ -7,14 +7,14 @@ pub fn pipe() -> io::Result<(AnonPipe, AnonPipe)> {
7
Err(io::Error::UNSUPPORTED_PLATFORM)
8
}
9
10
-#[unstable(feature = "anonymous_pipe", issue = "127154")]
+#[stable(feature = "anonymous_pipe", since = "CURRENT_RUSTC_VERSION")]
11
impl From<PipeReader> for Stdio {
12
fn from(pipe: PipeReader) -> Self {
13
pipe.0.diverge()
14
15
16
17
18
impl From<PipeWriter> for Stdio {
19
fn from(pipe: PipeWriter) -> Self {
20
0 commit comments