pub struct EstimationMetrics {
pub tasks_analyzed: u32,
pub average_accuracy_ratio: f64,
pub median_accuracy_ratio: f64,
pub within_25_percent: f64,
pub average_absolute_error_minutes: f64,
}Expand description
Estimation accuracy metrics for tasks with both estimated and actual minutes.
Fields§
§tasks_analyzed: u32Number of tasks analyzed (have both estimated and actual minutes).
average_accuracy_ratio: f64Average estimation accuracy ratio (actual/estimated). 1.0 = perfect estimation, <1.0 = overestimated, >1.0 = underestimated.
median_accuracy_ratio: f64Median estimation accuracy ratio.
within_25_percent: f64Percentage of tasks estimated within 25% of actual.
average_absolute_error_minutes: f64Average absolute error in minutes.
Trait Implementations§
Source§impl Clone for EstimationMetrics
impl Clone for EstimationMetrics
Source§fn clone(&self) -> EstimationMetrics
fn clone(&self) -> EstimationMetrics
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 EstimationMetrics
impl Debug for EstimationMetrics
Source§impl<'de> Deserialize<'de> for EstimationMetrics
impl<'de> Deserialize<'de> for EstimationMetrics
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 EstimationMetrics
impl RefUnwindSafe for EstimationMetrics
impl Send for EstimationMetrics
impl Sync for EstimationMetrics
impl Unpin for EstimationMetrics
impl UnsafeUnpin for EstimationMetrics
impl UnwindSafe for EstimationMetrics
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