pub struct LabelHealth {
pub label: String,
pub issue_count: usize,
pub open_count: usize,
pub closed_count: usize,
pub blocked_count: usize,
pub health: i32,
pub health_level: String,
pub velocity: VelocityMetrics,
pub freshness: FreshnessMetrics,
pub flow: FlowMetrics,
pub criticality: CriticalityMetrics,
pub issues: Vec<String>,
}Fields§
§label: String§issue_count: usize§open_count: usize§closed_count: usize§blocked_count: usize§health: i32§health_level: String§velocity: VelocityMetrics§freshness: FreshnessMetrics§flow: FlowMetrics§criticality: CriticalityMetrics§issues: Vec<String>Trait Implementations§
Source§impl Clone for LabelHealth
impl Clone for LabelHealth
Source§fn clone(&self) -> LabelHealth
fn clone(&self) -> LabelHealth
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 LabelHealth
impl Debug for LabelHealth
Auto Trait Implementations§
impl Freeze for LabelHealth
impl RefUnwindSafe for LabelHealth
impl Send for LabelHealth
impl Sync for LabelHealth
impl Unpin for LabelHealth
impl UnsafeUnpin for LabelHealth
impl UnwindSafe for LabelHealth
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