pub struct ExecCreateRequest {
pub attach_stderr: bool,
pub attach_stdin: bool,
pub attach_stdout: bool,
pub cmd: Vec<String>,
pub detach_keys: String,
pub env: Vec<String>,
pub privileged: bool,
pub tty: bool,
pub user: String,
pub working_dir: String,
}
Fields§
§attach_stderr: bool
§attach_stdin: bool
§attach_stdout: bool
§cmd: Vec<String>
§detach_keys: String
§env: Vec<String>
§privileged: bool
§tty: bool
§user: String
§working_dir: String
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ExecCreateRequest
impl RefUnwindSafe for ExecCreateRequest
impl Send for ExecCreateRequest
impl Sync for ExecCreateRequest
impl Unpin for ExecCreateRequest
impl UnwindSafe for ExecCreateRequest
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