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

pub struct ImageImportStatus {
    pub image: Option<Image>,
    pub status: Status,
    pub tag: Option<String>,
}

ImageImportStatus describes the result of an image import.

Fields

image: Option<Image>

Image is the metadata of that image, if the image was located

status: Status

Status is the status of the image import, including errors encountered while retrieving the image

tag: Option<String>

Tag is the tag this image was located under, if any

Trait Implementations

impl Clone for ImageImportStatus[src]

impl Debug for ImageImportStatus[src]

impl Default for ImageImportStatus[src]

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

impl PartialEq<ImageImportStatus> for ImageImportStatus[src]

impl Serialize for ImageImportStatus[src]

impl StructuralPartialEq for ImageImportStatus[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.