Enum subprocess::ExitStatus [] [src]

pub enum ExitStatus {
    Exited(u32),
    Signaled(u8),
    Other(i32),
    Undetermined,
}

Exit status of a process.

Variants

The process exited with the specified exit code.

Note that the exit code is limited to a much smaller range on most platforms.

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.

The process exit status cannot be described by the preceding two variants.

This should not occur in normal operation.

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.

Methods

impl ExitStatus
[src]

[src]

True if the exit status is of the process is 0.

Trait Implementations

impl Debug for ExitStatus
[src]

[src]

Formats the value using the given formatter.

impl Eq for ExitStatus
[src]

impl PartialEq for ExitStatus
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Copy for ExitStatus
[src]

impl Clone for ExitStatus
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more