devela/work/process/
reexports.rs

1// devela::work::process::reexports
2//
3//! Reexported items.
4//
5// Note that std's standalone functions are namespaced in `ExtProcess`.
6//
7// WAIT: [exit_status_error](https://github.com/rust-lang/rust/issues/84908)
8
9use crate::reexport;
10
11/* traits */
12
13reexport! { rust: std::process,
14    doc: "A trait for implementing arbitrary return types in the `main` function.",
15    @Termination as ProcessTermination
16}
17
18/* types */
19
20reexport! { rust: std::process,
21    doc: "Representation of a running or exited child process.\n\n
22See also the [`ExtProcess`][crate::ExtProcess] trait.",
23    @Child as Process
24}
25reexport! { rust: std::process,
26    doc: "A handle to a child process’s stderr.",
27    @ChildStderr as ProcessStderr
28}
29reexport! { rust: std::process,
30    doc: "A handle to a child process’s standard input (stdin).",
31    @ChildStdin as ProcessStdin
32}
33reexport! { rust: std::process,
34    doc: "A handle to a child process’s standard output (stdout).",
35    @ChildStdout as ProcessStdout
36}
37reexport! { rust: std::process,
38    doc: "A builder for configuring and spawning new processes.",
39    @Command as ProcessCommand
40}
41reexport! { rust: std::process,
42    doc: "An iterator over the command arguments.",
43    @CommandArgs as ProcessCommandArgs
44}
45reexport! { rust: std::process,
46    doc: "An iterator over the command environment variables.",
47    @CommandEnvs as ProcessCommandEnvs
48}
49reexport! { rust: std::process,
50    tag: crate::TAG_RESULT!(),
51    doc: "The status code the process returns to its parent on normal termination.",
52    @ExitCode as ProcessExitCode
53}
54reexport! { rust: std::process,
55    tag: crate::TAG_RESULT!(),
56    doc: "Describes the result of a process after it has terminated.",
57    @ExitStatus as ProcessExitStatus
58}
59reexport! { rust: std::process,
60    doc: "The output of a finished process.",
61    @Output as ProcessOutput
62}
63reexport! { rust: std::process,
64    doc: "Specifies how to handle standard I/O streams in [`ProcessCommand`].",
65    @Stdio as ProcessStdio
66}