pub struct APIContainers {
Show 15 fields pub id: String, pub names: Vec<String>, pub image: String, pub image_id: String, pub command: String, pub created: DateTime<Utc>, pub state: String, pub status: String, pub ports: Vec<APIPort>, pub labels: HashMap<String, String>, pub size_rw: Option<i64>, pub size_root_fs: Option<i64>, pub mounts: Vec<Mount>, pub network_settings: NetworkList, pub host_config: HostConfig<String>,
}
Expand description

Result type for the List Containers API

Fields§

§id: String§names: Vec<String>§image: String§image_id: String§command: String§created: DateTime<Utc>§state: String§status: String§ports: Vec<APIPort>§labels: HashMap<String, String>§size_rw: Option<i64>§size_root_fs: Option<i64>§mounts: Vec<Mount>§network_settings: NetworkList§host_config: HostConfig<String>

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Deserialize this value from the given Serde deserializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.