Struct docker_api::api::container::models::ContainerConfig[][src]

pub struct ContainerConfig {
Show 25 fields pub hostname: String, pub domainname: String, pub user: String, pub attach_stdin: bool, pub attach_stdout: bool, pub attach_stderr: bool, pub exposed_ports: Vec<PublishPort>, pub tty: bool, pub open_stdin: bool, pub stdin_once: bool, pub env: Vec<String>, pub cmd: Option<Vec<String>>, pub healthcheck: Option<HealthConfig>, pub args_escaped: Option<bool>, pub image: String, pub volumes: Option<VolumesMap>, pub working_dir: String, pub entrypoint: Option<Vec<String>>, pub network_disabled: Option<bool>, pub mac_address: Option<String>, pub on_build: Option<Vec<String>>, pub labels: Option<Labels>, pub stop_signal: Option<String>, pub stop_timeout: Option<isize>, pub shell: Option<Vec<String>>,
}

Fields

hostname: Stringdomainname: Stringuser: Stringattach_stdin: boolattach_stdout: boolattach_stderr: boolexposed_ports: Vec<PublishPort>tty: boolopen_stdin: boolstdin_once: boolenv: Vec<String>cmd: Option<Vec<String>>healthcheck: Option<HealthConfig>args_escaped: Option<bool>image: Stringvolumes: Option<VolumesMap>working_dir: Stringentrypoint: Option<Vec<String>>network_disabled: Option<bool>mac_address: Option<String>on_build: Option<Vec<String>>labels: Option<Labels>stop_signal: Option<String>stop_timeout: Option<isize>shell: Option<Vec<String>>

Implementations

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more