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