pub struct RunStats {Show 21 fields
pub run_start: u64,
pub run_end: u64,
pub total_duration_secs: u64,
pub task_stats: Vec<TaskStats>,
pub average_cycle_time_secs: Option<u64>,
pub fastest_task_id: Option<String>,
pub fastest_cycle_time_secs: Option<u64>,
pub longest_task_id: Option<String>,
pub longest_cycle_time_secs: Option<u64>,
pub idle_time_pct: f64,
pub escalation_count: u32,
pub message_count: u32,
pub auto_merge_count: u32,
pub manual_merge_count: u32,
pub rework_count: u32,
pub review_nudge_count: u32,
pub review_escalation_count: u32,
pub avg_review_stall_secs: Option<u64>,
pub max_review_stall_secs: Option<u64>,
pub max_review_stall_task: Option<String>,
pub task_rework_counts: Vec<(String, u32)>,
}Fields§
§run_start: u64§run_end: u64§total_duration_secs: u64§task_stats: Vec<TaskStats>§average_cycle_time_secs: Option<u64>§fastest_task_id: Option<String>§fastest_cycle_time_secs: Option<u64>§longest_task_id: Option<String>§longest_cycle_time_secs: Option<u64>§idle_time_pct: f64§escalation_count: u32§message_count: u32§auto_merge_count: u32§manual_merge_count: u32§rework_count: u32§review_nudge_count: u32§review_escalation_count: u32§avg_review_stall_secs: Option<u64>Average time (seconds) tasks spent in review before merge.
max_review_stall_secs: Option<u64>Longest review stall and the associated task.
max_review_stall_task: Option<String>§task_rework_counts: Vec<(String, u32)>Per-task rework cycle counts (task_id → rework count).
Trait Implementations§
impl StructuralPartialEq for RunStats
Auto Trait Implementations§
impl Freeze for RunStats
impl RefUnwindSafe for RunStats
impl Send for RunStats
impl Sync for RunStats
impl Unpin for RunStats
impl UnsafeUnpin for RunStats
impl UnwindSafe for RunStats
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.