[][src]Struct openshift_openapi::api::apps::v1::TagImageHook

pub struct TagImageHook {
    pub container_name: String,
    pub to: ObjectReference,
}

TagImageHook is a request to tag the image in a particular container onto an ImageStreamTag.

Fields

container_name: String

ContainerName is the name of a container in the deployment config whose image value will be used as the source of the tag. If there is only a single container this value will be defaulted to the name of that container.

to: ObjectReference

To is the target ImageStreamTag to set the container's image onto.

Trait Implementations

impl Clone for TagImageHook[src]

impl Debug for TagImageHook[src]

impl Default for TagImageHook[src]

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

impl PartialEq<TagImageHook> for TagImageHook[src]

impl Serialize for TagImageHook[src]

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