pub enum Applicability {
Strong,
Weak,
Missing,
}Expand description
Graded confidence that a technique’s applicability marker is observed in a response pair.
Strong (1.0) is full confidence the technique reached its oracle layer; Weak (0.3) is a
soft proxy signal; Missing (0.0) blocks the Contradictory outcome (downgrades to
Inapplicable).
Variants§
Strong
Direct evidence the technique reached its oracle layer.
Weak
Soft proxy signal — confidence is reduced but not blocked.
Missing
No applicability evidence — Contradictory outcomes downgrade to Inapplicable.
Implementations§
Source§impl Applicability
impl Applicability
Sourcepub fn confidence(self) -> f64
pub fn confidence(self) -> f64
Strong → 1.0, Weak → 0.3, Missing → 0.0.
Trait Implementations§
Source§impl Clone for Applicability
impl Clone for Applicability
Source§fn clone(&self) -> Applicability
fn clone(&self) -> Applicability
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 Applicability
impl Debug for Applicability
Source§impl PartialEq for Applicability
impl PartialEq for Applicability
Source§fn eq(&self, other: &Applicability) -> bool
fn eq(&self, other: &Applicability) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for Applicability
impl Eq for Applicability
impl StructuralPartialEq for Applicability
Auto Trait Implementations§
impl Freeze for Applicability
impl RefUnwindSafe for Applicability
impl Send for Applicability
impl Sync for Applicability
impl Unpin for Applicability
impl UnsafeUnpin for Applicability
impl UnwindSafe for Applicability
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