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 if possible if for example some foreign code calls waitpid() on the PID of the child process.

Implementations§

True if the exit status of the process is 0.

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.