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

pub struct RepositoryImportStatus {
    pub additional_tags: Option<Vec<String>>,
    pub images: Option<Vec<ImageImportStatus>>,
    pub status: Option<Status>,
}

RepositoryImportStatus describes the result of an image repository import

Fields

additional_tags: Option<Vec<String>>

AdditionalTags are tags that exist in the repository but were not imported because a maximum limit of automatic imports was applied.

images: Option<Vec<ImageImportStatus>>

Images is a list of images successfully retrieved by the import of the repository.

status: Option<Status>

Status reflects whether any failure occurred during import

Trait Implementations

impl Clone for RepositoryImportStatus[src]

impl Debug for RepositoryImportStatus[src]

impl Default for RepositoryImportStatus[src]

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

impl PartialEq<RepositoryImportStatus> for RepositoryImportStatus[src]

impl Serialize for RepositoryImportStatus[src]

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