pub struct WorkspaceStatusSummary {
pub total_specs: u32,
pub successful_specs: u32,
pub failed_specs: u32,
pub pending_specs: u32,
pub not_started_specs: u32,
pub stale_specs: u32,
}Expand description
Summary counts for workspace status
Fields§
§total_specs: u32Total number of specs in the workspace
successful_specs: u32Number of specs with successful latest phase
failed_specs: u32Number of specs with failed latest phase
pending_specs: u32Number of specs with pending work (not completed all phases)
not_started_specs: u32Number of specs that haven’t been started
stale_specs: u32Number of stale specs (no recent activity)
Trait Implementations§
Source§impl Clone for WorkspaceStatusSummary
impl Clone for WorkspaceStatusSummary
Source§fn clone(&self) -> WorkspaceStatusSummary
fn clone(&self) -> WorkspaceStatusSummary
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 WorkspaceStatusSummary
impl Debug for WorkspaceStatusSummary
Source§impl<'de> Deserialize<'de> for WorkspaceStatusSummary
impl<'de> Deserialize<'de> for WorkspaceStatusSummary
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 WorkspaceStatusSummary
impl RefUnwindSafe for WorkspaceStatusSummary
impl Send for WorkspaceStatusSummary
impl Sync for WorkspaceStatusSummary
impl Unpin for WorkspaceStatusSummary
impl UnsafeUnpin for WorkspaceStatusSummary
impl UnwindSafe for WorkspaceStatusSummary
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