Struct k8s_openapi::api::core::v1::NamespaceCondition
source · [−]pub struct NamespaceCondition {
pub last_transition_time: Option<Time>,
pub message: Option<String>,
pub reason: Option<String>,
pub status: String,
pub type_: String,
}
Expand description
NamespaceCondition contains details about state of namespace.
Fields
last_transition_time: Option<Time>
message: Option<String>
reason: Option<String>
status: String
Status of the condition, one of True, False, Unknown.
type_: String
Type of namespace controller condition.
Possible enum values:
"NamespaceContentRemaining"
contains information about resources remaining in a namespace."NamespaceDeletionContentFailure"
contains information about namespace deleter errors during deletion of resources."NamespaceDeletionDiscoveryFailure"
contains information about namespace deleter errors during resource discovery."NamespaceDeletionGroupVersionParsingFailure"
contains information about namespace deleter errors parsing GV for legacy types."NamespaceFinalizersRemaining"
contains information about which finalizers are on resources remaining in a namespace.
Trait Implementations
Returns the “default value” for a type. Read more
Deserialize this value from the given Serde deserializer. Read more
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for NamespaceCondition
impl Send for NamespaceCondition
impl Sync for NamespaceCondition
impl Unpin for NamespaceCondition
impl UnwindSafe for NamespaceCondition
Blanket Implementations
Mutably borrows from an owned value. Read more