replace version placeholder

This commit is contained in:
Boxy
2025-03-31 18:09:32 +01:00
parent 97c966bb40
commit a6c2ec04b4
32 changed files with 149 additions and 149 deletions

View File

@@ -1659,14 +1659,14 @@ impl From<io::Stderr> for Stdio {
}
}
#[stable(feature = "anonymous_pipe", since = "CURRENT_RUSTC_VERSION")]
#[stable(feature = "anonymous_pipe", since = "1.87.0")]
impl From<io::PipeWriter> for Stdio {
fn from(pipe: io::PipeWriter) -> Self {
Stdio::from_inner(pipe.into_inner().into())
}
}
#[stable(feature = "anonymous_pipe", since = "CURRENT_RUSTC_VERSION")]
#[stable(feature = "anonymous_pipe", since = "1.87.0")]
impl From<io::PipeReader> for Stdio {
fn from(pipe: io::PipeReader) -> Self {
Stdio::from_inner(pipe.into_inner().into())