Enum kube_runtime::controller::ReconcileReason
source · pub enum ReconcileReason {
Unknown,
ObjectUpdated,
RelatedObjectUpdated {
obj_ref: Box<ObjectRef<DynamicObject>>,
},
ReconcilerRequestedRetry,
ErrorPolicyRequestedRetry,
BulkReconcile,
Custom {
reason: String,
},
}
Variants§
Unknown
ObjectUpdated
RelatedObjectUpdated
ReconcilerRequestedRetry
ErrorPolicyRequestedRetry
BulkReconcile
Custom
Trait Implementations§
source§impl Clone for ReconcileReason
impl Clone for ReconcileReason
source§fn clone(&self) -> ReconcileReason
fn clone(&self) -> ReconcileReason
Returns a copy 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 more