pub struct VelocityReport {
pub sprints: Vec<VelocitySprint>,
pub average_points: f64,
pub change_percent: Option<f64>,
}Expand description
Velocity summary for the selected recent sprints.
Fields§
§sprints: Vec<VelocitySprint>Selected sprints in creation order, limited to the most recent recent entries.
average_points: f64Average completed points across the selected sprints.
change_percent: Option<f64>Percentage change from the previous-sprint average to the latest sprint, or None when no
comparison is possible.
Trait Implementations§
Source§impl Clone for VelocityReport
impl Clone for VelocityReport
Source§fn clone(&self) -> VelocityReport
fn clone(&self) -> VelocityReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 VelocityReport
impl Debug for VelocityReport
Source§impl PartialEq for VelocityReport
impl PartialEq for VelocityReport
impl StructuralPartialEq for VelocityReport
Auto Trait Implementations§
impl Freeze for VelocityReport
impl RefUnwindSafe for VelocityReport
impl Send for VelocityReport
impl Sync for VelocityReport
impl Unpin for VelocityReport
impl UnsafeUnpin for VelocityReport
impl UnwindSafe for VelocityReport
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more