pub struct ProjectCoverage {
pub project: String,
pub call_sites: usize,
pub binding_refs: usize,
pub binding_implemented: usize,
pub binding_total: usize,
}Expand description
Per-project coverage summary for a contract.
Fields§
§project: String§call_sites: usize§binding_refs: usize§binding_implemented: usize§binding_total: usizeTrait Implementations§
Source§impl Clone for ProjectCoverage
impl Clone for ProjectCoverage
Source§fn clone(&self) -> ProjectCoverage
fn clone(&self) -> ProjectCoverage
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 ProjectCoverage
impl Debug for ProjectCoverage
Auto Trait Implementations§
impl Freeze for ProjectCoverage
impl RefUnwindSafe for ProjectCoverage
impl Send for ProjectCoverage
impl Sync for ProjectCoverage
impl Unpin for ProjectCoverage
impl UnsafeUnpin for ProjectCoverage
impl UnwindSafe for ProjectCoverage
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