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

True if the exit status of the process is 0.

True if the subprocess was killed by a signal with the specified number.

You can pass the concrete libc signal numbers to this function, such as status.is_killed_by(libc::SIGABRT).

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 !=.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

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.