Struct shiplift::exec::ExecDetails[][src]

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: boolcontainer_id: Stringdetach_keys: Stringexit_code: Option<u64>id: Stringopen_stderr: boolopen_stdin: boolopen_stdout: boolprocess_config: ProcessConfigrunning: boolpid: u64

Trait Implementations

impl Clone for ExecDetails[src]

impl Debug for ExecDetails[src]

impl<'de> Deserialize<'de> for ExecDetails[src]

impl Serialize for ExecDetails[src]

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]