pub struct Burndown {
pub sprint_id: SprintId,
pub sprint_title: String,
pub metric: BurndownMetric,
pub total: u32,
pub days: Vec<BurndownDay>,
}Expand description
Sprint burndown summary.
Fields§
§sprint_id: SprintIdID of the target sprint.
sprint_title: StringDisplay title of the target sprint.
metric: BurndownMetricAggregated metrics (points or counts).
total: u32Total amount of work on the period start date (burndown starting point).
days: Vec<BurndownDay>Daily observation points (in ascending order from start date to end date, inclusive).
Trait Implementations§
impl StructuralPartialEq for Burndown
Auto Trait Implementations§
impl Freeze for Burndown
impl RefUnwindSafe for Burndown
impl Send for Burndown
impl Sync for Burndown
impl Unpin for Burndown
impl UnsafeUnpin for Burndown
impl UnwindSafe for Burndown
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