pub struct ProcessData<'a> {
    pub request_id: u32,
    pub pids: Vec<u32>,
    pub line_number: i64,
    pub line: String,
    /* private fields */
}
Expand description

Various fields related to the process

Fields

request_id: u32

A unique request-id / session-id

pids: Vec<u32>

List of child pids

line_number: i64

Process’s STDOUT & STDERR output’s line number

line: String

Process’s STDOUT & STDERR output’s line

Implementations

Create a new instance of the ProcessData

Kill the running process

Get the list of child pids

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