pub struct LabelSummary {
pub label: String,
pub issue_count: usize,
pub open_count: usize,
pub health: i32,
pub health_level: String,
pub top_issue: Option<String>,
pub needs_attention: bool,
}Fields§
§label: String§issue_count: usize§open_count: usize§health: i32§health_level: String§top_issue: Option<String>§needs_attention: boolTrait Implementations§
Source§impl Clone for LabelSummary
impl Clone for LabelSummary
Source§fn clone(&self) -> LabelSummary
fn clone(&self) -> LabelSummary
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 LabelSummary
impl Debug for LabelSummary
Auto Trait Implementations§
impl Freeze for LabelSummary
impl RefUnwindSafe for LabelSummary
impl Send for LabelSummary
impl Sync for LabelSummary
impl Unpin for LabelSummary
impl UnsafeUnpin for LabelSummary
impl UnwindSafe for LabelSummary
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