pub struct ExecDetails {
pub can_remove: bool,
pub container_id: String,
pub detach_keys: String,
pub exit_code: Option<u64>,
pub id: String,
pub open_stderr: bool,
pub open_stdin: bool,
pub open_stdout: bool,
pub process_config: ProcessConfig,
pub running: bool,
pub pid: u64,
}
Fields§
§can_remove: bool
§container_id: String
§detach_keys: String
§exit_code: Option<u64>
§id: String
§open_stderr: bool
§open_stdin: bool
§open_stdout: bool
§process_config: ProcessConfig
§running: bool
§pid: u64
Trait Implementations§
Source§impl Clone for ExecDetails
impl Clone for ExecDetails
Source§fn clone(&self) -> ExecDetails
fn clone(&self) -> ExecDetails
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 ExecDetails
impl Debug for ExecDetails
Source§impl<'de> Deserialize<'de> for ExecDetails
impl<'de> Deserialize<'de> for ExecDetails
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ExecDetails
impl RefUnwindSafe for ExecDetails
impl Send for ExecDetails
impl Sync for ExecDetails
impl Unpin for ExecDetails
impl UnwindSafe for ExecDetails
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