pub struct BottleneckAnalysis {
pub bottlenecks: Vec<Bottleneck>,
pub total_cost: f64,
pub critical_path_cost: f64,
pub parallelization_potential: f64,
}Expand description
Analysis of bottlenecks in a DAG
Fields§
§bottlenecks: Vec<Bottleneck>§total_cost: f64§critical_path_cost: f64§parallelization_potential: f64Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BottleneckAnalysis
impl RefUnwindSafe for BottleneckAnalysis
impl Send for BottleneckAnalysis
impl Sync for BottleneckAnalysis
impl Unpin for BottleneckAnalysis
impl UnsafeUnpin for BottleneckAnalysis
impl UnwindSafe for BottleneckAnalysis
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