pub struct CriticalityMetrics {
pub avg_pagerank: f64,
pub avg_betweenness: f64,
pub max_betweenness: f64,
pub critical_path_count: i32,
pub bottleneck_count: i32,
pub criticality_score: i32,
}Fields§
§avg_pagerank: f64§avg_betweenness: f64§max_betweenness: f64§critical_path_count: i32§bottleneck_count: i32§criticality_score: i32Trait Implementations§
Source§impl Clone for CriticalityMetrics
impl Clone for CriticalityMetrics
Source§fn clone(&self) -> CriticalityMetrics
fn clone(&self) -> CriticalityMetrics
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 CriticalityMetrics
impl Debug for CriticalityMetrics
Auto Trait Implementations§
impl Freeze for CriticalityMetrics
impl RefUnwindSafe for CriticalityMetrics
impl Send for CriticalityMetrics
impl Sync for CriticalityMetrics
impl Unpin for CriticalityMetrics
impl UnsafeUnpin for CriticalityMetrics
impl UnwindSafe for CriticalityMetrics
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