[][src]Struct openshift_openapi::api::image::v1::ImageStreamStatus

pub struct ImageStreamStatus {
    pub docker_image_repository: String,
    pub public_docker_image_repository: Option<String>,
    pub tags: Option<Vec<NamedTagEventList>>,
}

ImageStreamStatus contains information about the state of this image stream.

Fields

docker_image_repository: String

DockerImageRepository represents the effective location this stream may be accessed at. May be empty until the server determines where the repository is located

public_docker_image_repository: Option<String>

PublicDockerImageRepository represents the public location from where the image can be pulled outside the cluster. This field may be empty if the administrator has not exposed the integrated registry externally.

tags: Option<Vec<NamedTagEventList>>

Tags are a historical record of images associated with each tag. The first entry in the TagEvent array is the currently tagged image.

Trait Implementations

impl Clone for ImageStreamStatus[src]

impl Debug for ImageStreamStatus[src]

impl Default for ImageStreamStatus[src]

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

impl PartialEq<ImageStreamStatus> for ImageStreamStatus[src]

impl Serialize for ImageStreamStatus[src]

impl StructuralPartialEq for ImageStreamStatus[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: for<'de> Deserialize<'de>, 
[src]

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.