pub struct Bottleneck {
pub task_id: String,
pub task_name: String,
pub blocks_count: usize,
pub blocked_hours: f32,
pub roi: f32,
pub effort_hours: f32,
}Expand description
A bottleneck task that blocks significant downstream work.
Fields§
§task_id: StringThe bottleneck task ID.
task_name: StringTask name for display.
blocks_count: usizeNumber of tasks blocked by this one (directly or transitively).
blocked_hours: f32Total hours of work blocked.
roi: f32ROI: blocked_hours / task_effort (higher = higher priority).
effort_hours: f32Effort to complete this task.
Trait Implementations§
Source§impl Clone for Bottleneck
impl Clone for Bottleneck
Source§fn clone(&self) -> Bottleneck
fn clone(&self) -> Bottleneck
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 Bottleneck
impl Debug for Bottleneck
Source§impl<'de> Deserialize<'de> for Bottleneck
impl<'de> Deserialize<'de> for Bottleneck
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 Bottleneck
impl RefUnwindSafe for Bottleneck
impl Send for Bottleneck
impl Sync for Bottleneck
impl Unpin for Bottleneck
impl UnsafeUnpin for Bottleneck
impl UnwindSafe for Bottleneck
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