pub trait ConfigureCommand {
    fn current_dir(&mut self, dir: &Path);
    fn env(&mut self, name: &str, value: &OsStr);
}
Expand description

Common denominator for types that can be used to configure commands for execution in the terminal.

Required Methods

Sets the current directory.

Sets an environment variable.

Implementations on Foreign Types

Implementors