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 942c72e commit 6d50828Copy full SHA for 6d50828
src/libstd/io/process.rs
@@ -94,6 +94,7 @@ pub struct Process {
94
///
95
/// let output = process.stdout.get_mut_ref().read_to_end();
96
/// ```
97
+#[deriving(Clone)]
98
pub struct Command {
99
// The internal data for the builder. Documented by the builder
100
// methods below, and serialized into rt::rtio::ProcessConfig.
@@ -340,6 +341,7 @@ pub struct ProcessOutput {
340
341
}
342
343
/// Describes what to do with a standard io stream for a child process.
344
345
pub enum StdioContainer {
346
/// This stream will be ignored. This is the equivalent of attaching the
347
/// stream to `/dev/null`
0 commit comments