Struct k8s_openapi::v1_10::api::core::v1::NamespaceStatus[][src]

pub struct NamespaceStatus {
    pub phase: Option<String>,
}

NamespaceStatus is information about the current status of a Namespace.

Fields

Phase is the current lifecycle phase of the namespace. More info: https://kubernetes.io/docs/tasks/administer-cluster/namespaces/

Trait Implementations

impl Clone for NamespaceStatus
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for NamespaceStatus
[src]

Formats the value using the given formatter. Read more

impl Default for NamespaceStatus
[src]

Returns the "default value" for a type. Read more

impl PartialEq for NamespaceStatus
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for NamespaceStatus
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations