about summary refs log tree commit diff
path: root/library/std/src/sys/anonymous_pipe/unix.rs
diff options
context:
space:
mode:
authorJiahao XU <Jiahao_XU@outlook.com>2025-01-17 01:30:05 +1100
committerJiahao XU <Jiahao_XU@outlook.com>2025-01-17 01:30:05 +1100
commitefe888871c0b49ca9230649ea54b4d0f0bc62d25 (patch)
tree79eac14406cc687522324845965a8f38d28868f0 /library/std/src/sys/anonymous_pipe/unix.rs
parentd8a64098c9d0fb25699f657c6efff0bb418f7e18 (diff)
downloadrust-efe888871c0b49ca9230649ea54b4d0f0bc62d25.tar.gz
rust-efe888871c0b49ca9230649ea54b4d0f0bc62d25.zip
Move `std::pipe::*` into `std::io`
Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>
Diffstat (limited to 'library/std/src/sys/anonymous_pipe/unix.rs')
-rw-r--r--library/std/src/sys/anonymous_pipe/unix.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/library/std/src/sys/anonymous_pipe/unix.rs b/library/std/src/sys/anonymous_pipe/unix.rs
index 9168024730e..9e398765634 100644
--- a/library/std/src/sys/anonymous_pipe/unix.rs
+++ b/library/std/src/sys/anonymous_pipe/unix.rs
@@ -1,6 +1,5 @@
-use crate::io;
+use crate::io::{self, PipeReader, PipeWriter};
 use crate::os::fd::{AsFd, AsRawFd, BorrowedFd, FromRawFd, IntoRawFd, OwnedFd, RawFd};
-use crate::pipe::{PipeReader, PipeWriter};
 use crate::process::Stdio;
 use crate::sys::fd::FileDesc;
 use crate::sys::pipe::anon_pipe;