pub enum ExitStatus {
Exited(u32),
Signaled(u8),
Other(i32),
Undetermined,
}Expand description
Exit status of a process.
Variants§
Exited(u32)
The process exited with the specified exit code.
Note that the exit code is limited to a much smaller range on most platforms.
Signaled(u8)
The process exited due to a signal with the specified number.
This variant is never created on Windows, where signals of Unix kind do not exist.
Other(i32)
The process exit status cannot be described by the preceding two variants.
This should not occur in normal operation.
Undetermined
It is known that the process has completed, but its exit status is unavailable.
This should not occur in normal operation, but is possible if for example some foreign
code calls waitpid() on the PID of the child process.
Implementations§
Source§impl ExitStatus
impl ExitStatus
Trait Implementations§
Source§impl Clone for ExitStatus
impl Clone for ExitStatus
Source§fn clone(&self) -> ExitStatus
fn clone(&self) -> ExitStatus
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ExitStatus
impl Debug for ExitStatus
Source§impl PartialEq for ExitStatus
impl PartialEq for ExitStatus
impl Copy for ExitStatus
impl Eq for ExitStatus
impl StructuralPartialEq for ExitStatus
Auto Trait Implementations§
impl Freeze for ExitStatus
impl RefUnwindSafe for ExitStatus
impl Send for ExitStatus
impl Sync for ExitStatus
impl Unpin for ExitStatus
impl UnwindSafe for ExitStatus
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more