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: StringHuman readable name of the task to display in the UI.
command: StringExecutable command to spawn.
args: Vec<String>§env: Vec<(String, String)>§cwd: Option<String>