pub struct VelocityMetrics {
pub closed_last_7_days: i32,
pub closed_last_30_days: i32,
pub avg_days_to_close: f64,
pub trend_direction: String,
pub trend_percent: f64,
pub velocity_score: i32,
}Fields§
§closed_last_7_days: i32§closed_last_30_days: i32§avg_days_to_close: f64§trend_direction: String§trend_percent: f64§velocity_score: i32Trait Implementations§
Source§impl Clone for VelocityMetrics
impl Clone for VelocityMetrics
Source§fn clone(&self) -> VelocityMetrics
fn clone(&self) -> VelocityMetrics
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 VelocityMetrics
impl Debug for VelocityMetrics
Auto Trait Implementations§
impl Freeze for VelocityMetrics
impl RefUnwindSafe for VelocityMetrics
impl Send for VelocityMetrics
impl Sync for VelocityMetrics
impl Unpin for VelocityMetrics
impl UnsafeUnpin for VelocityMetrics
impl UnwindSafe for VelocityMetrics
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