Skip to content

Commit 79855bb

Browse files
committed
[library/std/src/process.rs] PartialEq & Eq for ExitCode
1 parent a18fbd0 commit 79855bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

std/src/process.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1979,7 +1979,7 @@ impl crate::error::Error for ExitStatusError {}
19791979
/// ExitCode::SUCCESS
19801980
/// }
19811981
/// ```
1982-
#[derive(Clone, Copy, Debug)]
1982+
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
19831983
#[stable(feature = "process_exitcode", since = "1.61.0")]
19841984
pub struct ExitCode(imp::ExitCode);
19851985

0 commit comments

Comments
 (0)