Struct docker_api::opts::ExecCreateOptsBuilder
source · [−]pub struct ExecCreateOptsBuilder { /* private fields */ }
Expand description
A builder struct for ExecCreateOpts.
Implementations
sourceimpl ExecCreateOptsBuilder
impl ExecCreateOptsBuilder
sourcepub fn build(self) -> ExecCreateOpts
pub fn build(self) -> ExecCreateOpts
Finish building ExecCreateOpts.
sourceimpl ExecCreateOptsBuilder
impl ExecCreateOptsBuilder
sourcepub fn command<S>(self, command: impl IntoIterator<Item = S>) -> Selfwhere
S: Serialize,
pub fn command<S>(self, command: impl IntoIterator<Item = S>) -> Selfwhere
S: Serialize,
Command to run, as an array of strings.
sourcepub fn env<S>(self, env: impl IntoIterator<Item = S>) -> Selfwhere
S: Serialize,
pub fn env<S>(self, env: impl IntoIterator<Item = S>) -> Selfwhere
S: Serialize,
A list of environment variables in the form ‘VAR=value’.
sourcepub fn attach_stdout(self, attach_stdout: bool) -> Self
pub fn attach_stdout(self, attach_stdout: bool) -> Self
Attach to stdout of the exec command.
sourcepub fn attach_stderr(self, attach_stderr: bool) -> Self
pub fn attach_stderr(self, attach_stderr: bool) -> Self
Attach to stderr of the exec command.
sourcepub fn detach_keys(self, detach_keys: impl Serialize) -> Self
pub fn detach_keys(self, detach_keys: impl Serialize) -> Self
Override the key sequence for detaching a container. Format is a single
character [a-Z] or ctrl-
sourcepub fn privileged(self, privileged: bool) -> Self
pub fn privileged(self, privileged: bool) -> Self
Runs the exec process with extended privileges. (Default: false
)
sourcepub fn user(self, user: impl Serialize) -> Self
pub fn user(self, user: impl Serialize) -> Self
The user, and optionally, group to run the exec process inside the container. Format is one of: user, user:group, uid, or uid:gid.
sourcepub fn working_dir(self, working_dir: impl Serialize) -> Self
pub fn working_dir(self, working_dir: impl Serialize) -> Self
The working directory for the exec process inside the container.
Trait Implementations
sourceimpl Clone for ExecCreateOptsBuilder
impl Clone for ExecCreateOptsBuilder
sourcefn clone(&self) -> ExecCreateOptsBuilder
fn clone(&self) -> ExecCreateOptsBuilder
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for ExecCreateOptsBuilder
impl Debug for ExecCreateOptsBuilder
sourceimpl Default for ExecCreateOptsBuilder
impl Default for ExecCreateOptsBuilder
sourcefn default() -> ExecCreateOptsBuilder
fn default() -> ExecCreateOptsBuilder
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl RefUnwindSafe for ExecCreateOptsBuilder
impl Send for ExecCreateOptsBuilder
impl Sync for ExecCreateOptsBuilder
impl Unpin for ExecCreateOptsBuilder
impl UnwindSafe for ExecCreateOptsBuilder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more