Enum unshare::ChildEvent [] [src]

pub enum ChildEvent {
    Death(pid_t, ExitStatus),
    Stop(pid_t, SigNum),
    Continue(pid_t),
}

The event returned from child_events() iterator

Variants

Child is dead, similar to what returned by reap_zombies()

Child is stopped on a signal SigNum

Child is continued (SIGCONT sent)

Trait Implementations

impl Debug for ChildEvent
[src]

Formats the value using the given formatter.

impl Clone for ChildEvent
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for ChildEvent
[src]

impl PartialEq for ChildEvent
[src]

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

This method tests for !=.

impl Eq for ChildEvent
[src]