pub trait CommandRunner: Send + Sync {
// Required method
async fn run(&self, args: &[String]) -> Result<Output>;
}Expand description
Trait abstracting CLI execution. Mockable in tests.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.