1
Fork 0

impl Default for ExitStatus

This commit is contained in:
Ian Jackson 2023-01-03 20:47:07 +00:00
parent 2d213f757d
commit 1f1d49a2b7
7 changed files with 7 additions and 7 deletions

View file

@ -1460,7 +1460,7 @@ impl From<fs::File> for Stdio {
// vs `_exit`. Naming of Unix system calls is not standardised across Unices, so terminology is a
// matter of convention and tradition. For clarity we usually speak of `exit`, even when we might
// mean an underlying system call such as `_exit`.
#[derive(PartialEq, Eq, Clone, Copy, Debug)]
#[derive(PartialEq, Eq, Clone, Copy, Debug, Default)]
#[stable(feature = "process", since = "1.0.0")]
pub struct ExitStatus(imp::ExitStatus);