Struct bollard::exec::CreateExecOptions[][src]

pub struct CreateExecOptions<T> where
    T: Into<String> + Serialize
{ pub attach_stdin: Option<bool>, pub attach_stdout: Option<bool>, pub attach_stderr: Option<bool>, pub tty: Option<bool>, pub detach_keys: Option<T>, pub env: Option<Vec<T>>, pub cmd: Option<Vec<T>>, pub privileged: Option<bool>, pub user: Option<T>, pub working_dir: Option<T>, }
Expand description

Exec configuration used in the Create Exec API

Fields

attach_stdin: Option<bool>

Attach to stdin of the exec command.

attach_stdout: Option<bool>

Attach to stdout of the exec command.

attach_stderr: Option<bool>

Attach to stderr of the exec command.

tty: Option<bool>

Allocate a pseudo-TTY.

detach_keys: Option<T>

Override the key sequence for detaching a container. Format is a single character [a-Z] or ctrl-<value> where <value> is one of: a-z, @, ^, [, , or _.

env: Option<Vec<T>>

A list of environment variables in the form ["VAR=value", ...].

cmd: Option<Vec<T>>

Command to run, as a string or array of strings.

privileged: Option<bool>

Runs the exec process with extended privileges.

user: Option<T>

The user, and optionally, group to run the exec process inside the container. Format is one of: user, user:group, uid, or uid:gid.

working_dir: Option<T>

The working directory for the exec process inside the container.

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

Returns the “default value” for a type. 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