pub trait CommandRunner {
// Required method
fn run(&mut self, spec: &CommandSpec) -> Result<CommandOutput>;
}Required Methods§
fn run(&mut self, spec: &CommandSpec) -> Result<CommandOutput>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".