pub struct BacklogPrioritizationOutput {
pub ranked_items: Vec<RankedItem>,
pub total_value: f64,
pub total_effort: i64,
pub included_count: usize,
pub excluded_count: usize,
}Expand description
Output for backlog prioritization
Fields§
§ranked_items: Vec<RankedItem>Ranked items
total_value: f64Total value delivered
total_effort: i64Total effort consumed
included_count: usizeItems included in capacity
excluded_count: usizeItems excluded due to capacity
Implementations§
Trait Implementations§
Source§impl Clone for BacklogPrioritizationOutput
impl Clone for BacklogPrioritizationOutput
Source§fn clone(&self) -> BacklogPrioritizationOutput
fn clone(&self) -> BacklogPrioritizationOutput
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 BacklogPrioritizationOutput
impl Debug for BacklogPrioritizationOutput
Source§impl Default for BacklogPrioritizationOutput
impl Default for BacklogPrioritizationOutput
Source§fn default() -> BacklogPrioritizationOutput
fn default() -> BacklogPrioritizationOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BacklogPrioritizationOutput
impl<'de> Deserialize<'de> for BacklogPrioritizationOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for BacklogPrioritizationOutput
impl RefUnwindSafe for BacklogPrioritizationOutput
impl Send for BacklogPrioritizationOutput
impl Sync for BacklogPrioritizationOutput
impl Unpin for BacklogPrioritizationOutput
impl UnsafeUnpin for BacklogPrioritizationOutput
impl UnwindSafe for BacklogPrioritizationOutput
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