ContainerRuntime

Trait ContainerRuntime 

Source
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§

Source

async fn start(&self, flow: &Flow) -> Result<()>

Source

async fn stop(&self, flow: &Flow) -> Result<()>

Source

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.

Implementors§