pub struct ProductivityVelocityReport {
pub window_days: u32,
pub total_completed: u32,
pub average_per_day: f64,
pub best_day: Option<(String, u32)>,
}Expand description
Productivity velocity report
Fields§
§window_days: u32§total_completed: u32§average_per_day: f64§best_day: Option<(String, u32)>Trait Implementations§
Source§impl Clone for ProductivityVelocityReport
impl Clone for ProductivityVelocityReport
Source§fn clone(&self) -> ProductivityVelocityReport
fn clone(&self) -> ProductivityVelocityReport
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 ProductivityVelocityReport
impl Debug for ProductivityVelocityReport
Auto Trait Implementations§
impl Freeze for ProductivityVelocityReport
impl RefUnwindSafe for ProductivityVelocityReport
impl Send for ProductivityVelocityReport
impl Sync for ProductivityVelocityReport
impl Unpin for ProductivityVelocityReport
impl UnsafeUnpin for ProductivityVelocityReport
impl UnwindSafe for ProductivityVelocityReport
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