pub struct EffectiveScore {
pub action: NextAction,
pub cost: f64,
pub effective: f64,
}Expand description
What a task’s raw score becomes once priced by its next action (§7) — the
division explain and the TUI decomposition show beside the total.
Fields§
§action: NextAction§cost: f64§effective: f64Trait Implementations§
Source§impl Clone for EffectiveScore
impl Clone for EffectiveScore
Source§fn clone(&self) -> EffectiveScore
fn clone(&self) -> EffectiveScore
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 EffectiveScore
Source§impl Debug for EffectiveScore
impl Debug for EffectiveScore
Source§impl PartialEq for EffectiveScore
impl PartialEq for EffectiveScore
impl StructuralPartialEq for EffectiveScore
Auto Trait Implementations§
impl Freeze for EffectiveScore
impl RefUnwindSafe for EffectiveScore
impl Send for EffectiveScore
impl Sync for EffectiveScore
impl Unpin for EffectiveScore
impl UnsafeUnpin for EffectiveScore
impl UnwindSafe for EffectiveScore
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