pub struct Summary {
pub what_changed: String,
pub why: String,
pub impact: String,
pub rollback_plan: String,
pub open_questions: Vec<String>,
pub alternatives_considered: Vec<DesignAlternative>,
}Expand description
Human-readable summary of what changed and why.
Fields§
§what_changed: String§why: String§impact: String§rollback_plan: String§open_questions: Vec<String>§alternatives_considered: Vec<DesignAlternative>Design alternatives considered during this work (v0.9.5).
Populated by agents via the alternatives parameter on ta_pr_build.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Summary
impl<'de> Deserialize<'de> for Summary
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
Auto Trait Implementations§
impl Freeze for Summary
impl RefUnwindSafe for Summary
impl Send for Summary
impl Sync for Summary
impl Unpin for Summary
impl UnsafeUnpin for Summary
impl UnwindSafe for Summary
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