pub struct PlanDrift {
pub approved_plan_id: String,
pub current_plan_id: String,
pub reasons: Vec<String>,
}Expand description
Why a release cut --plan <plan_id> was refused: the current repo no longer
hashes to the approved plan (ADR-0002 §3, plan_stale).
Fields§
§approved_plan_id: StringThe plan_id the human approved.
current_plan_id: StringThe plan_id the current repo state produces.
reasons: Vec<String>Human-readable specifics of what drifted (HEAD moved, the target set
changed, …) — at least one entry.
Trait Implementations§
impl Eq for PlanDrift
impl StructuralPartialEq for PlanDrift
Auto Trait Implementations§
impl Freeze for PlanDrift
impl RefUnwindSafe for PlanDrift
impl Send for PlanDrift
impl Sync for PlanDrift
impl Unpin for PlanDrift
impl UnsafeUnpin for PlanDrift
impl UnwindSafe for PlanDrift
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§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.