pub struct CycleTimeStats {
pub avg_hours: Option<f64>,
pub median_hours: Option<f64>,
pub p90_hours: Option<f64>,
pub min_hours: Option<f64>,
pub max_hours: Option<f64>,
pub sample_count: usize,
}Expand description
Cycle time statistics.
Fields§
§avg_hours: Option<f64>Average hours from creation to completion
median_hours: Option<f64>Median hours
p90_hours: Option<f64>90th percentile hours
min_hours: Option<f64>Fastest completion (hours)
max_hours: Option<f64>Slowest completion (hours)
sample_count: usizeNumber of completed requirements with timing data
Trait Implementations§
Source§impl Clone for CycleTimeStats
impl Clone for CycleTimeStats
Source§fn clone(&self) -> CycleTimeStats
fn clone(&self) -> CycleTimeStats
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 CycleTimeStats
impl Debug for CycleTimeStats
Auto Trait Implementations§
impl Freeze for CycleTimeStats
impl RefUnwindSafe for CycleTimeStats
impl Send for CycleTimeStats
impl Sync for CycleTimeStats
impl Unpin for CycleTimeStats
impl UnsafeUnpin for CycleTimeStats
impl UnwindSafe for CycleTimeStats
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