cargo-msrv 0.9.0

Find your minimum supported Rust version (MSRV)!
Documentation
use crate::errors::TResult;
use std::ffi::OsStr;
use std::path::Path;
use std::process::{Child, Command, Stdio};

pub fn command_with_output<I: IntoIterator<Item = V>, V: AsRef<OsStr>>(
    commands: I,
) -> TResult<Child> {
    command_impl(commands, None)
        .pipe_output()
        .spawn()
        .map_err(From::from)
}

pub fn command<I: IntoIterator<Item = V>, V: AsRef<OsStr>>(
    commands: I,
    dir: Option<&Path>,
) -> TResult<Child> {
    command_impl(commands, dir)
        .pipe_output()
        .spawn()
        .map_err(From::from)
}

trait PipeCliOutput {
    fn pipe_output(&mut self) -> &mut Command;
}

impl PipeCliOutput for Command {
    fn pipe_output(&mut self) -> &mut Command {
        self.stdout(Stdio::piped());
        self.stderr(Stdio::piped())
    }
}

fn command_impl<I: IntoIterator<Item = V>, V: AsRef<OsStr>>(
    commands: I,
    current_dir: Option<&Path>,
) -> Command {
    let mut cmd = Command::new("rustup");
    let _ = cmd.args(commands);

    if let Some(dir) = current_dir {
        let _ = cmd.current_dir(dir);
    }

    cmd
}