passivized_docker_engine_client 0.0.9

Docker Engine Client - manage and run containers, images, and volumes.
Documentation
1
2
3
4
5
6
7
8
9
10
use serde::Deserialize;

/// See https://docs.docker.com/engine/api/v1.41/#tag/Exec/operation/ContainerExec
#[derive(Clone, Debug, Deserialize)]
pub struct CreateExecResponse {

    #[serde(rename = "Id")]
    pub id: String

}