Struct docker_sdk::exec::ExecDetails
source · 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
sourceimpl Clone for ExecDetails
impl Clone for ExecDetails
sourcefn clone(&self) -> ExecDetails
fn clone(&self) -> ExecDetails
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for ExecDetails
impl Debug for ExecDetails
sourceimpl<'de> Deserialize<'de> for ExecDetails
impl<'de> Deserialize<'de> for ExecDetails
sourcefn 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
sourceimpl Serialize for ExecDetails
impl Serialize for ExecDetails
Auto Trait Implementations
impl RefUnwindSafe for ExecDetails
impl Send for ExecDetails
impl Sync for ExecDetails
impl Unpin for ExecDetails
impl UnwindSafe for ExecDetails
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