macro_rules! parse_output {
($output:expr) => { ... };
}Expand description
Convenience macro that parses a line from a [Command]’s output.
Returns Ok(stdout) if successful, otherwise returns Err(stderr).
macro_rules! parse_output {
($output:expr) => { ... };
}Convenience macro that parses a line from a [Command]’s output.
Returns Ok(stdout) if successful, otherwise returns Err(stderr).