pub struct VelocitySprint {
pub sprint_id: SprintId,
pub sprint_title: String,
pub points: u32,
pub completed_items: usize,
pub unestimated_completed_items: usize,
pub incomplete_items: usize,
}Expand description
Velocity and estimate coverage for one sprint.
Fields§
§sprint_id: SprintIdStable sprint ID.
sprint_title: StringSprint display title.
points: u32Total points for completed PBIs that have estimates.
completed_items: usizeNumber of completed PBIs, including unestimated items.
unestimated_completed_items: usizeNumber of completed PBIs without estimates.
incomplete_items: usizeNumber of incomplete PBIs in the sprint.
Trait Implementations§
Source§impl Clone for VelocitySprint
impl Clone for VelocitySprint
Source§fn clone(&self) -> VelocitySprint
fn clone(&self) -> VelocitySprint
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 VelocitySprint
impl Debug for VelocitySprint
impl Eq for VelocitySprint
Source§impl PartialEq for VelocitySprint
impl PartialEq for VelocitySprint
impl StructuralPartialEq for VelocitySprint
Auto Trait Implementations§
impl Freeze for VelocitySprint
impl RefUnwindSafe for VelocitySprint
impl Send for VelocitySprint
impl Sync for VelocitySprint
impl Unpin for VelocitySprint
impl UnsafeUnpin for VelocitySprint
impl UnwindSafe for VelocitySprint
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