Auto merge of #127633 - SamuelMarks:eq-exit-code, r=dtolnay
[library/std/src/process.rs] `PartialEq` for `ExitCode` Converting a third-party CLI to a library so started passing around [`std::process::ExitCode`](https://doc.rust-lang.org/std/process/struct.ExitCode.html) in an `Either`. Then I realised the tests can't be modified to compare equality of `ExitCode`s. This PR fixes this oversight.
This commit is contained in:
commit
bde6bf2b07
@ -1910,10 +1910,14 @@ impl crate::error::Error for ExitStatusError {}
|
|||||||
/// to its parent under normal termination.
|
/// to its parent under normal termination.
|
||||||
///
|
///
|
||||||
/// `ExitCode` is intended to be consumed only by the standard library (via
|
/// `ExitCode` is intended to be consumed only by the standard library (via
|
||||||
/// [`Termination::report()`]), and intentionally does not provide accessors like
|
/// [`Termination::report()`]). For forwards compatibility with potentially
|
||||||
/// `PartialEq`, `Eq`, or `Hash`. Instead the standard library provides the
|
/// unusual targets, this type currently does not provide `Eq`, `Hash`, or
|
||||||
/// canonical `SUCCESS` and `FAILURE` exit codes as well as `From<u8> for
|
/// access to the raw value. This type does provide `PartialEq` for
|
||||||
/// ExitCode` for constructing other arbitrary exit codes.
|
/// comparison, but note that there may potentially be multiple failure
|
||||||
|
/// codes, some of which will _not_ compare equal to `ExitCode::FAILURE`.
|
||||||
|
/// The standard library provides the canonical `SUCCESS` and `FAILURE`
|
||||||
|
/// exit codes as well as `From<u8> for ExitCode` for constructing other
|
||||||
|
/// arbitrary exit codes.
|
||||||
///
|
///
|
||||||
/// # Portability
|
/// # Portability
|
||||||
///
|
///
|
||||||
@ -1952,7 +1956,7 @@ impl crate::error::Error for ExitStatusError {}
|
|||||||
/// ExitCode::SUCCESS
|
/// ExitCode::SUCCESS
|
||||||
/// }
|
/// }
|
||||||
/// ```
|
/// ```
|
||||||
#[derive(Clone, Copy, Debug)]
|
#[derive(Clone, Copy, Debug, PartialEq)]
|
||||||
#[stable(feature = "process_exitcode", since = "1.61.0")]
|
#[stable(feature = "process_exitcode", since = "1.61.0")]
|
||||||
pub struct ExitCode(imp::ExitCode);
|
pub struct ExitCode(imp::ExitCode);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user