[][src]Struct openshift_openapi::api::route::v1::RouteIngressCondition

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

RouteIngressCondition contains details for the current condition of this route on a particular router.

Fields

last_transition_time: Option<Time>

RFC 3339 date and time when this condition last transitioned

message: Option<String>

Human readable message indicating details about last transition.

reason: Option<String>

(brief) reason for the condition's last transition, and is usually a machine and human readable constant

status: String

Status is the status of the condition. Can be True, False, Unknown.

type_: String

Type is the type of the condition. Currently only Ready.

Trait Implementations

impl Clone for RouteIngressCondition[src]

impl Debug for RouteIngressCondition[src]

impl Default for RouteIngressCondition[src]

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

impl PartialEq<RouteIngressCondition> for RouteIngressCondition[src]

impl Serialize for RouteIngressCondition[src]

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