We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12fbabd commit 2a4d012Copy full SHA for 2a4d012
library/std/src/os/linux/process.rs
@@ -5,9 +5,13 @@
5
use crate::io::Result;
6
use crate::os::unix::io::{AsRawFd, FromRawFd, IntoRawFd, RawFd};
7
use crate::process;
8
+#[cfg(not(doc))]
9
use crate::sys::fd::FileDesc;
10
use crate::sys_common::{AsInner, AsInnerMut, FromInner, IntoInner};
11
12
+#[cfg(doc)]
13
+struct FileDesc;
14
+
15
/// This type represents a file descriptor that refers to a process.
16
///
17
/// A `PidFd` can be obtained by setting the corresponding option on [`Command`]
0 commit comments