Type Alias Command

Source
pub type Command = Command;

Aliased Type§

pub struct Command {
    pub command: String,
    pub args: Vec<String>,
    pub env: Vec<(String, String)>,
}

Fields§

§command: String

The command to execute.

§args: Vec<String>

The arguments to pass to the command.

§env: Vec<(String, String)>

The environment variables to set for the command.