pub struct PrStats {
pub total_prs: usize,
pub issues_found: usize,
pub critical_count: usize,
pub high_count: usize,
pub medium_count: usize,
pub low_count: usize,
pub avg_title_length: f64,
pub score: f64,
}Expand description
Build statistics from PR analysis.
Fields§
§total_prs: usize§issues_found: usize§critical_count: usize§high_count: usize§medium_count: usize§low_count: usize§avg_title_length: f64§score: f64Auto Trait Implementations§
impl Freeze for PrStats
impl RefUnwindSafe for PrStats
impl Send for PrStats
impl Sync for PrStats
impl Unpin for PrStats
impl UnsafeUnpin for PrStats
impl UnwindSafe for PrStats
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