pub enum CoverageCell {
Covered,
Blocked,
Uncovered,
}Expand description
Per-cell verdict for a (tool, pack) pair.
Variants§
Covered
At least one invariant or sequence in the pack would target this tool at runtime.
Blocked
The tool would be touched, but the destructive detector refuses to invoke it without an allowlist match.
Uncovered
No invariant in the pack targets this tool name and no
for_each_tool filter matches its annotations / name. The
tool is silently un-exercised by this pack.
Trait Implementations§
Source§impl Clone for CoverageCell
impl Clone for CoverageCell
Source§fn clone(&self) -> CoverageCell
fn clone(&self) -> CoverageCell
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 CoverageCell
impl Debug for CoverageCell
Source§impl PartialEq for CoverageCell
impl PartialEq for CoverageCell
Source§impl Serialize for CoverageCell
impl Serialize for CoverageCell
impl Copy for CoverageCell
impl Eq for CoverageCell
impl StructuralPartialEq for CoverageCell
Auto Trait Implementations§
impl Freeze for CoverageCell
impl RefUnwindSafe for CoverageCell
impl Send for CoverageCell
impl Sync for CoverageCell
impl Unpin for CoverageCell
impl UnsafeUnpin for CoverageCell
impl UnwindSafe for CoverageCell
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,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.