Enum mio_child_process::ProcessEvent[][src]

pub enum ProcessEvent {
    Data(StdioChannelString),
    CommandError(Error),
    IoError(StdioChannelError),
    Utf8Error(StdioChannelUtf8Error),
    Exit(ExitStatus),
}

An event received from the child process

Variants

Data is received on an StdioChannel. The String is the UTF8 interpretation of this data.

There was an issue with starting or closing a child process.

There was an issue while reading the stdout or stderr stream.

There was an issue with translating the byte array from the stdout or stderr stream into UTF8

The process exited with the given ExitStatus.

Trait Implementations

impl Debug for ProcessEvent
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations