pub struct RollbackPlan {Show 15 fields
pub schema_version: String,
pub rollback_plan_id: RollbackPlanId,
pub case_id: VerificationCaseId,
pub policy_decision_id: PolicyDecisionId,
pub citation: V25CitationContext,
pub required: bool,
pub rollback_scope: RollbackScopeV1,
pub invalidation_radius: InvalidationRadiusV1,
pub affected_artifacts: Vec<String>,
pub stale_surfaces: Vec<String>,
pub recomputation_requirements: Vec<String>,
pub quarantine_targets: Vec<String>,
pub operator_actions: Vec<String>,
pub completion_criteria: Vec<String>,
pub reason: String,
}Fields§
§schema_version: String§rollback_plan_id: RollbackPlanId§case_id: VerificationCaseId§policy_decision_id: PolicyDecisionId§citation: V25CitationContext§required: bool§rollback_scope: RollbackScopeV1§invalidation_radius: InvalidationRadiusV1§affected_artifacts: Vec<String>§stale_surfaces: Vec<String>§recomputation_requirements: Vec<String>§quarantine_targets: Vec<String>§operator_actions: Vec<String>§completion_criteria: Vec<String>§reason: StringImplementations§
Trait Implementations§
Source§impl Clone for RollbackPlan
impl Clone for RollbackPlan
Source§fn clone(&self) -> RollbackPlan
fn clone(&self) -> RollbackPlan
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RollbackPlan
impl Debug for RollbackPlan
Source§impl<'de> Deserialize<'de> for RollbackPlan
impl<'de> Deserialize<'de> for RollbackPlan
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
impl Eq for RollbackPlan
Source§impl JsonSchema for RollbackPlan
impl JsonSchema for RollbackPlan
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for RollbackPlan
impl PartialEq for RollbackPlan
Source§fn eq(&self, other: &RollbackPlan) -> bool
fn eq(&self, other: &RollbackPlan) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RollbackPlan
impl Serialize for RollbackPlan
impl StructuralPartialEq for RollbackPlan
Auto Trait Implementations§
impl Freeze for RollbackPlan
impl RefUnwindSafe for RollbackPlan
impl Send for RollbackPlan
impl Sync for RollbackPlan
impl Unpin for RollbackPlan
impl UnsafeUnpin for RollbackPlan
impl UnwindSafe for RollbackPlan
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