passivized_docker_engine_client 0.0.10-alpha

Docker Engine Client - manage and run containers, images, and volumes.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

/// See https://docs.docker.com/engine/api/v1.41/#tag/Container/operation/ContainerInspect
#[derive(Clone, Debug, Default)]
pub struct InspectContainerArgs {

    /// Return the size of container in fields size_rw and size_root_fs.
    pub size: Option<bool>

}

impl InspectContainerArgs {

    pub fn size(mut self, v: bool) -> Self {
        self.size = Some(v);
        self
    }

}