Struct tracetree::ProcessInfo [] [src]

pub struct ProcessInfo {
    pub pid: pid_t,
    pub started: Instant,
    pub ended: Option<Instant>,
    pub cmdline: Vec<String>,
}

Information about a spawned process.

Fields

The process ID.

When the process was started.

When the process ended, or None if it is still running.

The commandline with which this process was executed.

Trait Implementations

impl Default for ProcessInfo
[src]

Returns the "default value" for a type. Read more