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

pub struct TagEventCondition {
    pub generation: i64,
    pub last_transition_time: Option<Time>,
    pub message: Option<String>,
    pub reason: Option<String>,
    pub status: String,
    pub type_: String,
}

TagEventCondition contains condition information for a tag event.

Fields

generation: i64

Generation is the spec tag generation that this status corresponds to

last_transition_time: Option<Time>

LastTransitionTIme is the time the condition transitioned from one status to another.

message: Option<String>

Message is a human readable description of the details about last transition, complementing reason.

reason: Option<String>

Reason is a brief machine readable explanation for the condition's last transition.

status: String

Status of the condition, one of True, False, Unknown.

type_: String

Type of tag event condition, currently only ImportSuccess

Trait Implementations

impl Clone for TagEventCondition[src]

impl Debug for TagEventCondition[src]

impl Default for TagEventCondition[src]

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

impl PartialEq<TagEventCondition> for TagEventCondition[src]

impl Serialize for TagEventCondition[src]

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