pub trait RestoreRunnerCommandExecutor {
// Required method
fn execute(
&mut self,
command: &RestoreApplyRunnerCommand,
) -> Result<RestoreRunnerCommandOutput, Error>;
}Expand description
RestoreRunnerCommandExecutor
Required Methods§
Sourcefn execute(
&mut self,
command: &RestoreApplyRunnerCommand,
) -> Result<RestoreRunnerCommandOutput, Error>
fn execute( &mut self, command: &RestoreApplyRunnerCommand, ) -> Result<RestoreRunnerCommandOutput, Error>
Execute one rendered restore runner command.