pub struct MilestoneDraft {
pub milestone_id: String,
pub milestone_title: String,
pub source_drafts: Vec<String>,
pub milestone_branch: Option<String>,
pub phase_summaries: Vec<PhaseSummary>,
pub created_at: DateTime<Utc>,
}Expand description
An aggregated milestone draft collecting multiple per-phase drafts.
Stored at .ta/milestones/<milestone_id>.json.
Fields§
§milestone_id: StringUnique milestone identifier (UUID).
milestone_title: StringHuman-readable title for the milestone.
source_drafts: Vec<String>Ordered list of draft IDs included in this milestone.
milestone_branch: Option<String>Optional branch name for milestone-branch application mode.
phase_summaries: Vec<PhaseSummary>Per-phase summaries, one per source draft.
created_at: DateTime<Utc>When this milestone was created.
Implementations§
Trait Implementations§
Source§impl Clone for MilestoneDraft
impl Clone for MilestoneDraft
Source§fn clone(&self) -> MilestoneDraft
fn clone(&self) -> MilestoneDraft
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 Debug for MilestoneDraft
impl Debug for MilestoneDraft
Source§impl<'de> Deserialize<'de> for MilestoneDraft
impl<'de> Deserialize<'de> for MilestoneDraft
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 MilestoneDraft
impl RefUnwindSafe for MilestoneDraft
impl Send for MilestoneDraft
impl Sync for MilestoneDraft
impl Unpin for MilestoneDraft
impl UnsafeUnpin for MilestoneDraft
impl UnwindSafe for MilestoneDraft
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