pub struct StatsOutput {
pub total: usize,
pub open: usize,
pub in_progress: usize,
pub closed: usize,
pub blocked: usize,
pub completion_pct: f64,
pub priority_counts: [usize; 5],
pub cost: Option<CostStats>,
}Expand description
Machine-readable snapshot of all stats.
Fields§
§total: usize§open: usize§in_progress: usize§closed: usize§blocked: usize§completion_pct: f64§priority_counts: [usize; 5]§cost: Option<CostStats>Trait Implementations§
Source§impl Debug for StatsOutput
impl Debug for StatsOutput
Auto Trait Implementations§
impl Freeze for StatsOutput
impl RefUnwindSafe for StatsOutput
impl Send for StatsOutput
impl Sync for StatsOutput
impl Unpin for StatsOutput
impl UnsafeUnpin for StatsOutput
impl UnwindSafe for StatsOutput
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