pub trait RunCommandInContainer {
// Required method
fn run_command_in_container(
&self,
container_id: &str,
command: Vec<String>,
) -> impl Future<Output = Result<CommandOutput, RunCommandInContainerError>> + Send;
}Required Methods§
fn run_command_in_container( &self, container_id: &str, command: Vec<String>, ) -> impl Future<Output = Result<CommandOutput, RunCommandInContainerError>> + Send
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.