pub trait Executor: Any + Send + Sync { // Required method fn execute(&self, command: Command, opts: ExecOpts) -> Result<(), Error>; }
A job executor.
Execute the given command with the given options, waiting until the command completes.