/// See https://docs.docker.com/engine/api/v1.41/#tag/Container/operation/ContainerInspect
#[derive(Clone, Debug, Default)]pubstructInspectContainerArgs{/// Return the size of container in fields size_rw and size_root_fs.
pubsize:Option<bool>}implInspectContainerArgs{pubfnsize(mutself, v:bool)->Self{self.size =Some(v);self}}