pub struct AutonomousReleaseGateDecision {
pub gate_id: String,
pub gate_summary: String,
pub merge_gate_result: AutonomousMergeGateStatus,
pub release_gate_result: AutonomousReleaseGateStatus,
pub publish_gate_result: AutonomousPublishGateStatus,
pub kill_switch_state: KillSwitchState,
pub rollback_plan: Option<RollbackPlan>,
pub reason_code: AutonomousReleaseReasonCode,
pub fail_closed: bool,
}Expand description
Combined gate decision record for the autonomous merge and release lane.
Fields§
§gate_id: StringUnique identifier for this gate evaluation.
gate_summary: StringHuman-readable summary of the gate decision.
merge_gate_result: AutonomousMergeGateStatusResult of the merge gate check.
release_gate_result: AutonomousReleaseGateStatusResult of the release gate check.
publish_gate_result: AutonomousPublishGateStatusResult of the publish gate check.
kill_switch_state: KillSwitchStateCurrent kill-switch state at evaluation time.
rollback_plan: Option<RollbackPlan>Rollback plan; populated when any gate is blocked or drift detected.
reason_code: AutonomousReleaseReasonCodeMachine-readable reason code.
fail_closed: boolSafety gate: when true the lane must not proceed under any
circumstance.
Trait Implementations§
Source§impl Clone for AutonomousReleaseGateDecision
impl Clone for AutonomousReleaseGateDecision
Source§fn clone(&self) -> AutonomousReleaseGateDecision
fn clone(&self) -> AutonomousReleaseGateDecision
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<'de> Deserialize<'de> for AutonomousReleaseGateDecision
impl<'de> Deserialize<'de> for AutonomousReleaseGateDecision
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<AutonomousReleaseGateDecision, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<AutonomousReleaseGateDecision, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AutonomousReleaseGateDecision
impl PartialEq for AutonomousReleaseGateDecision
Source§fn eq(&self, other: &AutonomousReleaseGateDecision) -> bool
fn eq(&self, other: &AutonomousReleaseGateDecision) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AutonomousReleaseGateDecision
impl Serialize for AutonomousReleaseGateDecision
Source§fn 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 Eq for AutonomousReleaseGateDecision
impl StructuralPartialEq for AutonomousReleaseGateDecision
Auto Trait Implementations§
impl Freeze for AutonomousReleaseGateDecision
impl RefUnwindSafe for AutonomousReleaseGateDecision
impl Send for AutonomousReleaseGateDecision
impl Sync for AutonomousReleaseGateDecision
impl Unpin for AutonomousReleaseGateDecision
impl UnsafeUnpin for AutonomousReleaseGateDecision
impl UnwindSafe for AutonomousReleaseGateDecision
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.