[][src]Struct openshift_openapi::api::template::v1::TemplateInstanceCondition

pub struct TemplateInstanceCondition {
    pub last_transition_time: Time,
    pub message: String,
    pub reason: String,
    pub status: String,
    pub type_: String,
}

TemplateInstanceCondition contains condition information for a TemplateInstance.

Fields

last_transition_time: Time

LastTransitionTime is the last time a condition status transitioned from one state to another.

message: String

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

reason: String

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

status: String

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

type_: String

Type of the condition, currently Ready or InstantiateFailure.

Trait Implementations

impl Clone for TemplateInstanceCondition[src]

impl Debug for TemplateInstanceCondition[src]

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

impl PartialEq<TemplateInstanceCondition> for TemplateInstanceCondition[src]

impl Serialize for TemplateInstanceCondition[src]

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