Enum criterion_stats::univariate::outliers::tukey::Label[][src]

pub enum Label {
    HighMild,
    HighSevere,
    LowMild,
    LowSevere,
    NotAnOutlier,
}

Labels used to classify outliers

Variants

HighMild

A “mild” outlier in the “high” spectrum

HighSevere

A “severe” outlier in the “high” spectrum

LowMild

A “mild” outlier in the “low” spectrum

LowSevere

A “severe” outlier in the “low” spectrum

NotAnOutlier

A normal data point

Implementations

impl Label[src]

pub fn is_high(&self) -> bool[src]

Checks if the data point has an “unusually” high value

pub fn is_mild(&self) -> bool[src]

Checks if the data point is labeled as a “mild” outlier

pub fn is_low(&self) -> bool[src]

Checks if the data point has an “unusually” low value

pub fn is_outlier(&self) -> bool[src]

Checks if the data point is labeled as an outlier

pub fn is_severe(&self) -> bool[src]

Checks if the data point is labeled as a “severe” outlier

Auto Trait Implementations

impl RefUnwindSafe for Label

impl Send for Label

impl Sync for Label

impl Unpin for Label

impl UnwindSafe for Label

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.