pub struct FlowMetrics {
pub incoming_deps: i32,
pub outgoing_deps: i32,
pub incoming_labels: Vec<String>,
pub outgoing_labels: Vec<String>,
pub blocked_by_external: i32,
pub blocking_external: i32,
pub flow_score: i32,
}Fields§
§incoming_deps: i32§outgoing_deps: i32§incoming_labels: Vec<String>§outgoing_labels: Vec<String>§blocked_by_external: i32§blocking_external: i32§flow_score: i32Trait Implementations§
Source§impl Clone for FlowMetrics
impl Clone for FlowMetrics
Source§fn clone(&self) -> FlowMetrics
fn clone(&self) -> FlowMetrics
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 FlowMetrics
impl Debug for FlowMetrics
Auto Trait Implementations§
impl Freeze for FlowMetrics
impl RefUnwindSafe for FlowMetrics
impl Send for FlowMetrics
impl Sync for FlowMetrics
impl Unpin for FlowMetrics
impl UnsafeUnpin for FlowMetrics
impl UnwindSafe for FlowMetrics
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