Struct bollard::service::ExecConfig
source · pub struct ExecConfig {
pub attach_stdin: Option<bool>,
pub attach_stdout: Option<bool>,
pub attach_stderr: Option<bool>,
pub detach_keys: Option<String>,
pub tty: Option<bool>,
pub env: Option<Vec<String>>,
pub cmd: Option<Vec<String>>,
pub privileged: Option<bool>,
pub user: Option<String>,
pub working_dir: Option<String>,
}
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.
detach_keys: Option<String>
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 _
.
tty: Option<bool>
Allocate a pseudo-TTY.
env: Option<Vec<String>>
A list of environment variables in the form [\"VAR=value\", ...]
.
cmd: Option<Vec<String>>
Command to run, as a string or array of strings.
privileged: Option<bool>
Runs the exec process with extended privileges.
user: Option<String>
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<String>
The working directory for the exec process inside the container.
Trait Implementations§
source§impl Clone for ExecConfig
impl Clone for ExecConfig
source§fn clone(&self) -> ExecConfig
fn clone(&self) -> ExecConfig
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ExecConfig
impl Debug for ExecConfig
source§impl Default for ExecConfig
impl Default for ExecConfig
source§fn default() -> ExecConfig
fn default() -> ExecConfig
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ExecConfig
impl<'de> Deserialize<'de> for ExecConfig
source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ExecConfig, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ExecConfig, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq for ExecConfig
impl PartialEq for ExecConfig
source§impl Serialize for ExecConfig
impl Serialize for ExecConfig
source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for ExecConfig
Auto Trait Implementations§
impl Freeze for ExecConfig
impl RefUnwindSafe for ExecConfig
impl Send for ExecConfig
impl Sync for ExecConfig
impl Unpin for ExecConfig
impl UnwindSafe for ExecConfig
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)