pub struct TagEventCondition {
pub generation: i64,
pub last_transition_time: Option<Time>,
pub message: Option<String>,
pub reason: Option<String>,
pub status: String,
pub type_: String,
}
Expand description
TagEventCondition contains condition information for a tag event.
Fields§
§generation: i64
Generation is the spec tag generation that this status corresponds to
last_transition_time: Option<Time>
LastTransitionTIme is the time the condition transitioned from one status to another.
message: Option<String>
Message is a human readable description of the details about last transition, complementing reason.
reason: Option<String>
Reason is a brief machine readable explanation for the condition’s last transition.
status: String
Status of the condition, one of True, False, Unknown.
type_: String
Type of tag event condition, currently only ImportSuccess
Trait Implementations§
Source§impl Clone for TagEventCondition
impl Clone for TagEventCondition
Source§fn clone(&self) -> TagEventCondition
fn clone(&self) -> TagEventCondition
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for TagEventCondition
impl Debug for TagEventCondition
Source§impl Default for TagEventCondition
impl Default for TagEventCondition
Source§fn default() -> TagEventCondition
fn default() -> TagEventCondition
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TagEventCondition
impl<'de> Deserialize<'de> for TagEventCondition
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for TagEventCondition
impl PartialEq for TagEventCondition
Source§impl Serialize for TagEventCondition
impl Serialize for TagEventCondition
impl StructuralPartialEq for TagEventCondition
Auto Trait Implementations§
impl Freeze for TagEventCondition
impl RefUnwindSafe for TagEventCondition
impl Send for TagEventCondition
impl Sync for TagEventCondition
impl Unpin for TagEventCondition
impl UnwindSafe for TagEventCondition
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more