Struct k8s_openapi_ext::corev1::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.
Trait Implementations
sourceimpl Clone for NamespaceCondition
impl Clone for NamespaceCondition
sourcefn clone(&self) -> NamespaceCondition
fn clone(&self) -> NamespaceCondition
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for NamespaceCondition
impl Debug for NamespaceCondition
sourceimpl DeepMerge for NamespaceCondition
impl DeepMerge for NamespaceCondition
sourcefn merge_from(&mut self, other: NamespaceCondition)
fn merge_from(&mut self, other: NamespaceCondition)
Merge
other
into self
.sourceimpl Default for NamespaceCondition
impl Default for NamespaceCondition
sourcefn default() -> NamespaceCondition
fn default() -> NamespaceCondition
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for NamespaceCondition
impl<'de> Deserialize<'de> for NamespaceCondition
sourcefn deserialize<D>(
deserializer: D
) -> Result<NamespaceCondition, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D
) -> Result<NamespaceCondition, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl PartialEq<NamespaceCondition> for NamespaceCondition
impl PartialEq<NamespaceCondition> for NamespaceCondition
sourcefn eq(&self, other: &NamespaceCondition) -> bool
fn eq(&self, other: &NamespaceCondition) -> bool
sourceimpl Serialize for NamespaceCondition
impl Serialize for NamespaceCondition
sourcefn serialize<S>(
&self,
serializer: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
fn serialize<S>(
&self,
serializer: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for NamespaceCondition
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more