pub struct RunArgs {
pub executables: Vec<Executable>,
pub error_on_output: bool,
pub stderr_to_stdout: bool,
pub show: Show,
}Expand description
named arguments for the run function
Fields§
§executables: Vec<Executable>the commands to execute concurrently
error_on_output: boolwhether to error if any command produces output
stderr_to_stdout: boolwhether to redirect stderr output to stdout
show: Showwhich output to display
Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for RunArgs
impl !UnwindSafe for RunArgs
impl Freeze for RunArgs
impl Send for RunArgs
impl Sync for RunArgs
impl Unpin for RunArgs
impl UnsafeUnpin for RunArgs
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more