pub trait ShellRunner: Send + Sync {
// Required method
fn run<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
command: &'life1 str,
working_dir: &'life2 Path,
env_vars: HashMap<String, String>,
timeout: Option<u64>,
) -> Pin<Box<dyn Future<Output = Result<RunnerOutput>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait;
}Expand description
Trait for running shell commands
Required Methods§
Sourcefn run<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
command: &'life1 str,
working_dir: &'life2 Path,
env_vars: HashMap<String, String>,
timeout: Option<u64>,
) -> Pin<Box<dyn Future<Output = Result<RunnerOutput>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
fn run<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
command: &'life1 str,
working_dir: &'life2 Path,
env_vars: HashMap<String, String>,
timeout: Option<u64>,
) -> Pin<Box<dyn Future<Output = Result<RunnerOutput>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Run a shell command and return the output
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".