pub struct ProductivityEstimationReport {
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
Productivity estimation report
Fields§
§tasks_analyzed: u32§average_accuracy_ratio: f64§median_accuracy_ratio: f64§within_25_percent: f64§average_absolute_error_minutes: f64Trait Implementations§
Source§impl Clone for ProductivityEstimationReport
impl Clone for ProductivityEstimationReport
Source§fn clone(&self) -> ProductivityEstimationReport
fn clone(&self) -> ProductivityEstimationReport
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 ProductivityEstimationReport
impl Debug for ProductivityEstimationReport
Auto Trait Implementations§
impl Freeze for ProductivityEstimationReport
impl RefUnwindSafe for ProductivityEstimationReport
impl Send for ProductivityEstimationReport
impl Sync for ProductivityEstimationReport
impl Unpin for ProductivityEstimationReport
impl UnsafeUnpin for ProductivityEstimationReport
impl UnwindSafe for ProductivityEstimationReport
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