pub trait ContainerRuntime {
// Required methods
async fn start(&self, flow: &Flow) -> Result<()>;
async fn stop(&self, flow: &Flow) -> Result<()>;
async fn status(&self) -> Result<Vec<ContainerStatus>>;
}Expand description
コンテナランタイムのトレイト
Required Methods§
async fn start(&self, flow: &Flow) -> Result<()>
async fn stop(&self, flow: &Flow) -> Result<()>
async fn status(&self) -> Result<Vec<ContainerStatus>>
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.