pub enum WhyEntry {
Skipped {
rule_id: String,
symbol: CompactString,
},
Scored {
rule_id: String,
symbol: CompactString,
threshold: f64,
matches: Vec<WhyMatch>,
},
}Variants§
Skipped
Function carried a layer-conform-ignore directive and was skipped.
Scored
Function was scored against every resolvable golden of the rule.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for WhyEntry
impl RefUnwindSafe for WhyEntry
impl Send for WhyEntry
impl Sync for WhyEntry
impl Unpin for WhyEntry
impl UnsafeUnpin for WhyEntry
impl UnwindSafe for WhyEntry
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