Enum lrs::process::ChildStatus

The status of a child process.

Syntax

enum ChildStatus {
    Continued(i32),
    Dumped(i32),
    Exited(i32),
    Killed(i32),
    None,
    Stopped(i32),
    Trapped(i32),
}

Variants

NameDescription
Continued

The child has been continued.

Dumped

The child has been killed and created a core dump.

Exited

The child has exited.

Killed

The child has been killed.

None

No status.

Stopped

The child has been stopped by a signal.

Trapped

The child has been trapped.

Trait implementations

NameDescription
Clone

Objects that can be duplicated.

Copy

Objects that can safely be copied via memcpy.

Debug

Objects that can be formatted in a "debug" form.

Eq

Objects that implement the binary == and != operators.

MaybeClone

Objects that can be duplicated.