pub struct CoverageReport {
pub contracts: Vec<ContractCoverage>,
pub totals: CoverageTotals,
}Expand description
Coverage report across multiple contracts.
Fields§
§contracts: Vec<ContractCoverage>Per-contract coverage details.
totals: CoverageTotalsAggregate totals.
Trait Implementations§
Source§impl Clone for CoverageReport
impl Clone for CoverageReport
Auto Trait Implementations§
impl Freeze for CoverageReport
impl RefUnwindSafe for CoverageReport
impl Send for CoverageReport
impl Sync for CoverageReport
impl Unpin for CoverageReport
impl UnsafeUnpin for CoverageReport
impl UnwindSafe for CoverageReport
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