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

pub struct ImageStreamImportSpec {
    pub images: Option<Vec<ImageImportSpec>>,
    pub import: bool,
    pub repository: Option<RepositoryImportSpec>,
}

ImageStreamImportSpec defines what images should be imported.

Fields

images: Option<Vec<ImageImportSpec>>

Images are a list of individual images to import.

import: bool

Import indicates whether to perform an import - if so, the specified tags are set on the spec and status of the image stream defined by the type meta.

repository: Option<RepositoryImportSpec>

Repository is an optional import of an entire container image repository. A maximum limit on the number of tags imported this way is imposed by the server.

Trait Implementations

impl Clone for ImageStreamImportSpec[src]

impl Debug for ImageStreamImportSpec[src]

impl Default for ImageStreamImportSpec[src]

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

impl PartialEq<ImageStreamImportSpec> for ImageStreamImportSpec[src]

impl Serialize for ImageStreamImportSpec[src]

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