pub struct ProjectHealthCounts {
pub total: usize,
pub open: usize,
pub closed: usize,
pub actionable: usize,
pub blocked: usize,
pub by_status: BTreeMap<String, usize>,
pub by_priority: BTreeMap<i32, usize>,
pub by_type: BTreeMap<String, usize>,
}Fields§
§total: usize§open: usize§closed: usize§actionable: usize§blocked: usize§by_status: BTreeMap<String, usize>§by_priority: BTreeMap<i32, usize>§by_type: BTreeMap<String, usize>Trait Implementations§
Source§impl Clone for ProjectHealthCounts
impl Clone for ProjectHealthCounts
Source§fn clone(&self) -> ProjectHealthCounts
fn clone(&self) -> ProjectHealthCounts
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 ProjectHealthCounts
impl Debug for ProjectHealthCounts
Auto Trait Implementations§
impl Freeze for ProjectHealthCounts
impl RefUnwindSafe for ProjectHealthCounts
impl Send for ProjectHealthCounts
impl Sync for ProjectHealthCounts
impl Unpin for ProjectHealthCounts
impl UnsafeUnpin for ProjectHealthCounts
impl UnwindSafe for ProjectHealthCounts
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