[][src]Struct wharf::result::ContainerInspect

pub struct ContainerInspect {
    pub app_armor_profile: String,
    pub args: Vec<String>,
    pub config: Value,
    pub created: String,
    pub driver: String,
    pub exec_ids: Vec<String>,
    pub host_config: Value,
    pub hostname_path: String,
    pub hosts_path: String,
    pub log_path: String,
    pub id: String,
    pub image: String,
    pub mount_label: String,
    pub name: String,
    pub network_settings: Value,
    pub path: String,
    pub process_label: String,
    pub resolv_conf_path: String,
    pub restart_count: i64,
    pub state: Value,
    pub mounts: Vec<Value>,
}

Result data of container.inspect()

Fields

app_armor_profile: Stringargs: Vec<String>config: Valuecreated: Stringdriver: Stringexec_ids: Vec<String>host_config: Valuehostname_path: Stringhosts_path: Stringlog_path: Stringid: Stringimage: Stringmount_label: Stringname: Stringnetwork_settings: Valuepath: Stringprocess_label: Stringresolv_conf_path: Stringrestart_count: i64state: Valuemounts: Vec<Value>

Trait Implementations

impl Debug for ContainerInspect[src]

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

impl Serialize for ContainerInspect[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

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

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

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.