[][src]Trait usereport::runner::Runner

pub trait Runner<'a, I: IntoIterator<Item = &'a Command>>: Debug {
    fn run(
        &self,
        commands: I,
        max_parallel_commands: usize
    ) -> Result<Vec<CommandResult>>; }

Runner Interface

Required methods

fn run(
    &self,
    commands: I,
    max_parallel_commands: usize
) -> Result<Vec<CommandResult>>

Execute all commands and wait until all commands return

Loading content...

Implementors

impl<'a, I: IntoIterator<Item = &'a Command>> Runner<'a, I> for ThreadRunner[src]

Loading content...