pub trait CommandRunner {
// Required method
fn run(&self, command: &str, args: &[String]) -> CommandRunOutput;
}Required Methods§
fn run(&self, command: &str, args: &[String]) -> CommandRunOutput
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".