Struct docker_api::api::container::models::ContainerDetails
source · [−]pub struct ContainerDetails {Show 25 fields
pub id: String,
pub created: DateTime<Utc>,
pub path: String,
pub args: Vec<String>,
pub state: ContainerState,
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: DriverData,
pub size_rw: Option<i64>,
pub size_root_fs: Option<i64>,
pub mounts: Vec<MountPoint>,
pub config: Option<ContainerConfig>,
pub network_settings: NetworkSettings,
}Fields
id: Stringcreated: DateTime<Utc>path: Stringargs: Vec<String>state: ContainerStateimage: Stringresolv_conf_path: Stringhostname_path: Stringhosts_path: Stringlog_path: Stringname: Stringrestart_count: i64driver: Stringplatform: Stringmount_label: Stringprocess_label: Stringapp_armor_profile: Stringexec_ids: Option<Vec<String>>host_config: HostConfiggraph_driver: DriverDatasize_rw: Option<i64>size_root_fs: Option<i64>mounts: Vec<MountPoint>config: Option<ContainerConfig>network_settings: NetworkSettingsTrait Implementations
sourceimpl Clone for ContainerDetails
impl Clone for ContainerDetails
sourcefn clone(&self) -> ContainerDetails
fn clone(&self) -> ContainerDetails
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 more
sourceimpl Debug for ContainerDetails
impl Debug for ContainerDetails
sourceimpl<'de> Deserialize<'de> for ContainerDetails
impl<'de> Deserialize<'de> for ContainerDetails
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 ContainerDetails
impl Serialize for ContainerDetails
Auto Trait Implementations
impl RefUnwindSafe for ContainerDetails
impl Send for ContainerDetails
impl Sync for ContainerDetails
impl Unpin for ContainerDetails
impl UnwindSafe for ContainerDetails
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more