[][src]Struct google_run1::GoogleCloudRunV1Condition

pub struct GoogleCloudRunV1Condition {
    pub status: Option<String>,
    pub reason: Option<String>,
    pub severity: Option<String>,
    pub type_: Option<String>,
    pub message: Option<String>,
    pub last_transition_time: Option<String>,
}

Condition defines a generic condition for a Resource

This type is not used in any activity, and only used as part of another schema.

Fields

status: Option<String>

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

reason: Option<String>

Optional. One-word CamelCase reason for the condition's last transition.

severity: Option<String>

Optional. How to interpret failures of this condition, one of Error, Warning, Info

type_: Option<String>

type is used to communicate the status of the reconciliation process. See also: https://github.com/knative/serving/blob/master/docs/spec/errors.md#error-conditions-and-reporting Types common to all resources include:

  • "Ready": True when the Resource is ready.
message: Option<String>

Optional. Human readable message indicating details about the current status.

last_transition_time: Option<String>

Optional. Last time the condition transitioned from one status to another.

Trait Implementations

impl Clone for GoogleCloudRunV1Condition[src]

impl Debug for GoogleCloudRunV1Condition[src]

impl Default for GoogleCloudRunV1Condition[src]

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

impl Part for GoogleCloudRunV1Condition[src]

impl Serialize for GoogleCloudRunV1Condition[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.

impl<T> Typeable for T where
    T: Any