pub struct CoverageStateCounts {
pub complete: u32,
pub partial: u32,
pub failed: u32,
pub ignored: u32,
pub oversized: u32,
pub quarantined: u32,
pub stale: u32,
}Expand description
Per-state counts retained by one selected-file coverage digest.
Fields§
§complete: u32Complete coverage rows.
partial: u32Partial coverage rows.
failed: u32Failed coverage rows.
ignored: u32Intentionally ignored coverage rows.
oversized: u32Oversized coverage rows.
quarantined: u32Quarantined coverage rows.
stale: u32Stale coverage rows.
Trait Implementations§
Source§impl Clone for CoverageStateCounts
impl Clone for CoverageStateCounts
Source§fn clone(&self) -> CoverageStateCounts
fn clone(&self) -> CoverageStateCounts
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 CoverageStateCounts
impl Debug for CoverageStateCounts
Source§impl Default for CoverageStateCounts
impl Default for CoverageStateCounts
Source§fn default() -> CoverageStateCounts
fn default() -> CoverageStateCounts
Returns the “default value” for a type. Read more
Source§impl PartialEq for CoverageStateCounts
impl PartialEq for CoverageStateCounts
Source§impl Serialize for CoverageStateCounts
impl Serialize for CoverageStateCounts
impl Eq for CoverageStateCounts
impl StructuralPartialEq for CoverageStateCounts
Auto Trait Implementations§
impl Freeze for CoverageStateCounts
impl RefUnwindSafe for CoverageStateCounts
impl Send for CoverageStateCounts
impl Sync for CoverageStateCounts
impl Unpin for CoverageStateCounts
impl UnwindSafe for CoverageStateCounts
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more