pub struct ProjectHealthVelocity {
pub closed_last_7_days: usize,
pub closed_last_30_days: usize,
pub avg_days_to_close: f64,
pub weekly: Vec<WeeklyClosureCount>,
}Fields§
§closed_last_7_days: usize§closed_last_30_days: usize§avg_days_to_close: f64§weekly: Vec<WeeklyClosureCount>Trait Implementations§
Source§impl Clone for ProjectHealthVelocity
impl Clone for ProjectHealthVelocity
Source§fn clone(&self) -> ProjectHealthVelocity
fn clone(&self) -> ProjectHealthVelocity
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 ProjectHealthVelocity
impl Debug for ProjectHealthVelocity
Auto Trait Implementations§
impl Freeze for ProjectHealthVelocity
impl RefUnwindSafe for ProjectHealthVelocity
impl Send for ProjectHealthVelocity
impl Sync for ProjectHealthVelocity
impl Unpin for ProjectHealthVelocity
impl UnsafeUnpin for ProjectHealthVelocity
impl UnwindSafe for ProjectHealthVelocity
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