[library/std/src/process.rs] Remove Eq derive

This commit is contained in:
Samuel Marks 2024-09-06 12:32:00 -05:00
parent 76f352ceb6
commit 2f0eb5f44d
No known key found for this signature in database
GPG Key ID: 43FD8EDE42E1A799

View File

@ -1983,7 +1983,7 @@ impl crate::error::Error for ExitStatusError {}
/// ExitCode::SUCCESS
/// }
/// ```
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[derive(Clone, Copy, Debug, PartialEq)]
#[stable(feature = "process_exitcode", since = "1.61.0")]
pub struct ExitCode(imp::ExitCode);