pub struct PhaseSummary {
pub draft_id: String,
pub phase_id: Option<String>,
pub phase_title: Option<String>,
pub artifact_count: usize,
}Expand description
A summary of one phase’s draft contribution to a milestone.
Fields§
§draft_id: StringThe draft ID produced by the phase run.
phase_id: Option<String>Optional plan phase ID (e.g. “v0.15.14”).
phase_title: Option<String>Optional human-readable phase title.
artifact_count: usizeNumber of artifacts in this draft.
Trait Implementations§
Source§impl Clone for PhaseSummary
impl Clone for PhaseSummary
Source§fn clone(&self) -> PhaseSummary
fn clone(&self) -> PhaseSummary
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 PhaseSummary
impl Debug for PhaseSummary
Source§impl<'de> Deserialize<'de> for PhaseSummary
impl<'de> Deserialize<'de> for PhaseSummary
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 PhaseSummary
impl RefUnwindSafe for PhaseSummary
impl Send for PhaseSummary
impl Sync for PhaseSummary
impl Unpin for PhaseSummary
impl UnsafeUnpin for PhaseSummary
impl UnwindSafe for PhaseSummary
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