pub struct SprintSpillover {
pub points: u32,
pub items: u32,
pub unestimated_items: u32,
}Expand description
Unfinished work captured when a sprint is closed.
This is retrospective context only. It is deliberately separate from completed points so velocity remains the amount of work that reached Done during the sprint.
Fields§
§points: u32Estimated points on unfinished PBIs.
items: u32Number of unfinished PBIs, including unestimated work.
unestimated_items: u32Number of unfinished PBIs without an estimate.
Trait Implementations§
Source§impl Clone for SprintSpillover
impl Clone for SprintSpillover
Source§fn clone(&self) -> SprintSpillover
fn clone(&self) -> SprintSpillover
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 moreimpl Copy for SprintSpillover
Source§impl Debug for SprintSpillover
impl Debug for SprintSpillover
Source§impl Default for SprintSpillover
impl Default for SprintSpillover
Source§fn default() -> SprintSpillover
fn default() -> SprintSpillover
Returns the “default value” for a type. Read more
impl Eq for SprintSpillover
Source§impl PartialEq for SprintSpillover
impl PartialEq for SprintSpillover
impl StructuralPartialEq for SprintSpillover
Auto Trait Implementations§
impl Freeze for SprintSpillover
impl RefUnwindSafe for SprintSpillover
impl Send for SprintSpillover
impl Sync for SprintSpillover
impl Unpin for SprintSpillover
impl UnsafeUnpin for SprintSpillover
impl UnwindSafe for SprintSpillover
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