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

pub struct ImageStreamImportStatus {
    pub images: Option<Vec<ImageImportStatus>>,
    pub import: Option<ImageStream>,
    pub repository: Option<RepositoryImportStatus>,
}

ImageStreamImportStatus contains information about the status of an image stream import.

Fields

images: Option<Vec<ImageImportStatus>>

Images is set with the result of importing spec.images

import: Option<ImageStream>

Import is the image stream that was successfully updated or created when 'to' was set.

repository: Option<RepositoryImportStatus>

Repository is set if spec.repository was set to the outcome of the import

Trait Implementations

impl Clone for ImageStreamImportStatus[src]

impl Debug for ImageStreamImportStatus[src]

impl Default for ImageStreamImportStatus[src]

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

impl PartialEq<ImageStreamImportStatus> for ImageStreamImportStatus[src]

impl Serialize for ImageStreamImportStatus[src]

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