runcc 2.0.3

run commands concurrently with rust and cargo
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[derive(Debug, Clone, Copy)]
#[non_exhaustive]
pub struct CommandSystemSimpleReport {
    pub command_count_total: usize,
    pub command_count_success: usize,
}

impl CommandSystemSimpleReport {
    pub fn command_count_failed(&self) -> usize {
        self.command_count_total - self.command_count_success
    }
}