pub struct ContainerDetails {Show 23 fields
pub id: String,
pub created: DateTime<Utc>,
pub path: String,
pub args: Vec<String>,
pub state: State,
pub image: String,
pub resolv_conf_path: String,
pub hostname_path: String,
pub hosts_path: String,
pub log_path: String,
pub name: String,
pub restart_count: i64,
pub driver: String,
pub platform: String,
pub mount_label: String,
pub process_label: String,
pub app_armor_profile: String,
pub exec_ids: Option<Vec<String>>,
pub host_config: HostConfig,
pub graph_driver: GraphDriverData,
pub mounts: Vec<Mount>,
pub config: ContainerConfig,
pub network_settings: NetworkSettings,
}
Fields§
§id: String
§created: DateTime<Utc>
§path: String
§args: Vec<String>
§state: State
§image: String
§resolv_conf_path: String
§hostname_path: String
§hosts_path: String
§log_path: String
§name: String
§restart_count: i64
§driver: String
§platform: String
§mount_label: String
§process_label: String
§app_armor_profile: String
§exec_ids: Option<Vec<String>>
§host_config: HostConfig
§graph_driver: GraphDriverData
§mounts: Vec<Mount>
§config: ContainerConfig
§network_settings: NetworkSettings
Trait Implementations§
Source§impl Clone for ContainerDetails
impl Clone for ContainerDetails
Source§fn clone(&self) -> ContainerDetails
fn clone(&self) -> ContainerDetails
Returns a duplicate 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 ContainerDetails
impl Debug for ContainerDetails
Source§impl<'de> Deserialize<'de> for ContainerDetails
impl<'de> Deserialize<'de> for ContainerDetails
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 ContainerDetails
impl RefUnwindSafe for ContainerDetails
impl Send for ContainerDetails
impl Sync for ContainerDetails
impl Unpin for ContainerDetails
impl UnwindSafe for ContainerDetails
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