This commit is contained in:
Bojan Serafimov
2022-08-18 15:17:30 -04:00
parent 1501dbd5a5
commit 324c09d19f

View File

@@ -1,10 +0,0 @@
use std::{os::unix::prelude::CommandExt, process::Command};
/// Command with ability to capture stdout and stderr to files
trait CaptureOutputToFile: CommandExt {
fn capture_to_file(&mut self) -> &mut Command;
}
impl<C: CommandExt> CaptureOutputToFile