pub enum ScoringDimension {
Confidence,
Impact,
}Expand description
Which axis a ScoringReason contributes to.
Variants§
Confidence
Numeric confidence score (0–100).
Impact
Impact classification — drives severity when gated by confidence.
Trait Implementations§
Source§impl Clone for ScoringDimension
impl Clone for ScoringDimension
Source§fn clone(&self) -> ScoringDimension
fn clone(&self) -> ScoringDimension
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 ScoringDimension
impl Debug for ScoringDimension
Source§impl<'de> Deserialize<'de> for ScoringDimension
impl<'de> Deserialize<'de> for ScoringDimension
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for ScoringDimension
impl Hash for ScoringDimension
Source§impl PartialEq for ScoringDimension
impl PartialEq for ScoringDimension
Source§fn eq(&self, other: &ScoringDimension) -> bool
fn eq(&self, other: &ScoringDimension) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ScoringDimension
impl Serialize for ScoringDimension
impl Copy for ScoringDimension
impl Eq for ScoringDimension
impl StructuralPartialEq for ScoringDimension
Auto Trait Implementations§
impl Freeze for ScoringDimension
impl RefUnwindSafe for ScoringDimension
impl Send for ScoringDimension
impl Sync for ScoringDimension
impl Unpin for ScoringDimension
impl UnsafeUnpin for ScoringDimension
impl UnwindSafe for ScoringDimension
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