Skip to main content

output_all_bytes

Function output_all_bytes 

Source
pub async fn output_all_bytes<R, I>(
    commands: I,
    concurrency: usize,
    runner: &R,
) -> Vec<Result<ProcessResult<Vec<u8>>>> 
where R: ProcessRunner + ?Sized, I: IntoIterator<Item = Command>,
Expand description

The raw-bytes companion to output_all: captures each command’s stdout as Vec<u8> instead of decoded text. All other semantics are identical — see output_all.