pub struct CoverageSummary {
pub total_lines: usize,
pub covered_lines: usize,
pub coverage_percentage: f64,
pub total_branches: Option<usize>,
pub covered_branches: Option<usize>,
pub branch_percentage: Option<f64>,
}Fields§
§total_lines: usize§covered_lines: usize§coverage_percentage: f64§total_branches: Option<usize>§covered_branches: Option<usize>§branch_percentage: Option<f64>Trait Implementations§
Auto Trait Implementations§
impl Freeze for CoverageSummary
impl RefUnwindSafe for CoverageSummary
impl Send for CoverageSummary
impl Sync for CoverageSummary
impl Unpin for CoverageSummary
impl UnwindSafe for CoverageSummary
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