pub struct HandoffArtifact {
pub goal: String,
pub sprint: u32,
pub progress_summary: String,
pub open_tasks: Vec<String>,
pub context_snapshot: Value,
pub contract_status: Vec<ContractCheckResult>,
pub drift_rate_24h: f64,
pub blocked_on: Vec<String>,
}Expand description
Structured state passed between sprints.
Fields§
§goal: String§sprint: u32§progress_summary: String§open_tasks: Vec<String>§context_snapshot: Value§contract_status: Vec<ContractCheckResult>§drift_rate_24h: f64§blocked_on: Vec<String>Trait Implementations§
Source§impl Clone for HandoffArtifact
impl Clone for HandoffArtifact
Source§fn clone(&self) -> HandoffArtifact
fn clone(&self) -> HandoffArtifact
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 HandoffArtifact
impl Debug for HandoffArtifact
Source§impl<'de> Deserialize<'de> for HandoffArtifact
impl<'de> Deserialize<'de> for HandoffArtifact
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 HandoffArtifact
impl RefUnwindSafe for HandoffArtifact
impl Send for HandoffArtifact
impl Sync for HandoffArtifact
impl Unpin for HandoffArtifact
impl UnsafeUnpin for HandoffArtifact
impl UnwindSafe for HandoffArtifact
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