pub enum PatternStrength {
Weak,
Moderate,
Strong,
VeryStrong,
}Expand description
Strength of discovered pattern
Variants§
Weak
Weak signal, might be noise
Moderate
Moderate signal, worth monitoring
Strong
Strong signal, likely real
VeryStrong
Very strong signal, high confidence
Implementations§
Source§impl PatternStrength
impl PatternStrength
Sourcepub fn from_score(score: f64) -> Self
pub fn from_score(score: f64) -> Self
Convert from numeric score
Trait Implementations§
Source§impl Clone for PatternStrength
impl Clone for PatternStrength
Source§fn clone(&self) -> PatternStrength
fn clone(&self) -> PatternStrength
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 PatternStrength
impl Debug for PatternStrength
Source§impl<'de> Deserialize<'de> for PatternStrength
impl<'de> Deserialize<'de> for PatternStrength
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 Ord for PatternStrength
impl Ord for PatternStrength
Source§fn cmp(&self, other: &PatternStrength) -> Ordering
fn cmp(&self, other: &PatternStrength) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for PatternStrength
impl PartialEq for PatternStrength
Source§impl PartialOrd for PatternStrength
impl PartialOrd for PatternStrength
Source§impl Serialize for PatternStrength
impl Serialize for PatternStrength
impl Copy for PatternStrength
impl Eq for PatternStrength
impl StructuralPartialEq for PatternStrength
Auto Trait Implementations§
impl Freeze for PatternStrength
impl RefUnwindSafe for PatternStrength
impl Send for PatternStrength
impl Sync for PatternStrength
impl Unpin for PatternStrength
impl UnwindSafe for PatternStrength
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> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more