diff options
| author | Yehuda Katz <wycats@gmail.com> | 2014-05-12 10:59:49 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-05-12 19:52:29 -0700 |
| commit | 31de69d0dd816fc0447df2e19d8935f68484ed64 (patch) | |
| tree | c5a8b52abd7ad8a9dcc635822c4207de84ecb5c8 /src/libstd | |
| parent | 826aeea007a99192c992688fb52ebc6530f715c7 (diff) | |
| download | rust-31de69d0dd816fc0447df2e19d8935f68484ed64.tar.gz rust-31de69d0dd816fc0447df2e19d8935f68484ed64.zip | |
Make ProcessOutput Eq, TotalEq, Clone
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/io/process.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libstd/io/process.rs b/src/libstd/io/process.rs index 3babef6126e..529fd25dc50 100644 --- a/src/libstd/io/process.rs +++ b/src/libstd/io/process.rs @@ -140,6 +140,7 @@ pub struct ProcessConfig<'a> { } /// The output of a finished process. +#[deriving(Eq, TotalEq, Clone)] pub struct ProcessOutput { /// The status (exit code) of the process. pub status: ProcessExit, |
