Struct k8s_openapi::v1_9::api::core::v1::NamespaceSpec[][src]

pub struct NamespaceSpec {
    pub finalizers: Option<Vec<String>>,
}

NamespaceSpec describes the attributes on a Namespace.

Fields

Finalizers is an opaque list of values that must be empty to permanently remove object from storage. More info: https://kubernetes.io/docs/tasks/administer-cluster/namespaces/

Trait Implementations

impl Clone for NamespaceSpec
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for NamespaceSpec
[src]

Formats the value using the given formatter. Read more

impl Default for NamespaceSpec
[src]

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

impl PartialEq for NamespaceSpec
[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 NamespaceSpec
[src]

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for NamespaceSpec
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations