Struct docker_api::image::ContainerConfig [−][src]
pub struct ContainerConfig {Show fields
pub attach_stderr: bool,
pub attach_stdin: bool,
pub attach_stdout: bool,
pub cmd: Option<Vec<String>>,
pub domainname: String,
pub entrypoint: Option<Vec<String>>,
pub env: Option<Vec<String>>,
pub exposed_ports: Option<HashMap<String, HashMap<String, String>>>,
pub hostname: String,
pub image: String,
pub labels: Option<HashMap<String, String>>,
pub on_build: Option<Vec<String>>,
pub open_stdin: bool,
pub stdin_once: bool,
pub tty: bool,
pub user: String,
pub working_dir: String,
}Fields
attach_stderr: boolattach_stdin: boolattach_stdout: boolcmd: Option<Vec<String>>domainname: Stringentrypoint: Option<Vec<String>>env: Option<Vec<String>>exposed_ports: Option<HashMap<String, HashMap<String, String>>>hostname: Stringimage: Stringlabels: Option<HashMap<String, String>>on_build: Option<Vec<String>>open_stdin: boolstdin_once: booltty: booluser: Stringworking_dir: StringImplementations
Trait Implementations
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations
impl RefUnwindSafe for ContainerConfigimpl Send for ContainerConfigimpl Sync for ContainerConfigimpl Unpin for ContainerConfigimpl UnwindSafe for ContainerConfigBlanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more