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

pub struct ImageStreamSpec {
    pub docker_image_repository: Option<String>,
    pub lookup_policy: Option<ImageLookupPolicy>,
    pub tags: Option<Vec<TagReference>>,
}

ImageStreamSpec represents options for ImageStreams.

Fields

docker_image_repository: Option<String>

dockerImageRepository is optional, if specified this stream is backed by a container repository on this server Deprecated: This field is deprecated as of v3.7 and will be removed in a future release. Specify the source for the tags to be imported in each tag via the spec.tags.from reference instead.

lookup_policy: Option<ImageLookupPolicy>

lookupPolicy controls how other resources reference images within this namespace.

tags: Option<Vec<TagReference>>

tags map arbitrary string values to specific image locators

Trait Implementations

impl Clone for ImageStreamSpec[src]

impl Debug for ImageStreamSpec[src]

impl Default for ImageStreamSpec[src]

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

impl PartialEq<ImageStreamSpec> for ImageStreamSpec[src]

impl Serialize for ImageStreamSpec[src]

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