pub enum MappingKind {
Code(CovTerm),
Branch {
true_term: CovTerm,
false_term: CovTerm,
},
MCDCBranch {
true_term: CovTerm,
false_term: CovTerm,
mcdc_params: ConditionInfo,
},
MCDCDecision(DecisionInfo),
}
Variants§
Code(CovTerm)
Associates a normal region of code with a counter/expression/zero.
Branch
Associates a branch region with separate counters for true and false.
MCDCBranch
Associates a branch region with separate counters for true and false.
MCDCDecision(DecisionInfo)
Associates a decision region with a bitmap and number of conditions.
Auto Trait Implementations§
impl Freeze for MappingKind
impl RefUnwindSafe for MappingKind
impl Send for MappingKind
impl Sync for MappingKind
impl Unpin for MappingKind
impl UnwindSafe for MappingKind
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