pub struct ContainerAttachOptions {
pub stream: bool,
pub stdin: bool,
pub stdout: bool,
pub stderr: bool,
pub detach_keys: Option<String>,
pub logs: bool,
}
Expand description
ContainerAttachOptions holds parameters to attach to a container.
Fields§
§stream: bool
§stdin: bool
§stdout: bool
§stderr: bool
§detach_keys: Option<String>
§logs: bool
Trait Implementations§
Source§impl Clone for ContainerAttachOptions
impl Clone for ContainerAttachOptions
Source§fn clone(&self) -> ContainerAttachOptions
fn clone(&self) -> ContainerAttachOptions
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 ContainerAttachOptions
impl Debug for ContainerAttachOptions
Source§impl Default for ContainerAttachOptions
impl Default for ContainerAttachOptions
Source§fn default() -> ContainerAttachOptions
fn default() -> ContainerAttachOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ContainerAttachOptions
impl RefUnwindSafe for ContainerAttachOptions
impl Send for ContainerAttachOptions
impl Sync for ContainerAttachOptions
impl Unpin for ContainerAttachOptions
impl UnwindSafe for ContainerAttachOptions
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