Type Alias BuildTaskTemplate

Source
pub type BuildTaskTemplate = TaskTemplate;
Expand description

A task template for building a debug target.

Aliased Type§

pub struct BuildTaskTemplate {
    pub label: String,
    pub command: String,
    pub args: Vec<String>,
    pub env: Vec<(String, String)>,
    pub cwd: Option<String>,
}

Fields§

§label: String

Human readable name of the task to display in the UI.

§command: String

Executable command to spawn.

§args: Vec<String>§env: Vec<(String, String)>§cwd: Option<String>