Struct k8s_openapi::v1_11::api::core::v1::ContainerImage[][src]

pub struct ContainerImage {
    pub names: Vec<String>,
    pub size_bytes: Option<i64>,
}

Describe a container image

Fields

Names by which this image is known. e.g. ["k8s.gcr.io/hyperkube:v1.0.7", "dockerhub.io/google_containers/hyperkube:v1.0.7"]

The size of the image in bytes.

Trait Implementations

impl Clone for ContainerImage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ContainerImage
[src]

Formats the value using the given formatter. Read more

impl Default for ContainerImage
[src]

Returns the "default value" for a type. Read more

impl PartialEq for ContainerImage
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for ContainerImage
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations