use crate::{Error, Metric, MetricType, Result};
use alloc::borrow::ToOwned;
use core::{fmt, str::FromStr};
#[derive(Copy, Clone, Debug, Eq, PartialEq, PartialOrd, Ord)]
pub enum UserInteraction {
Required,
None,
}
impl Metric for UserInteraction {
const TYPE: MetricType = MetricType::UI;
fn score(self) -> f64 {
match self {
UserInteraction::Required => 0.62,
UserInteraction::None => 0.85,
}
}
fn as_str(self) -> &'static str {
match self {
UserInteraction::Required => "R",
UserInteraction::None => "N",
}
}
}
impl fmt::Display for UserInteraction {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}:{}", Self::name(), self.as_str())
}
}
impl FromStr for UserInteraction {
type Err = Error;
fn from_str(s: &str) -> Result<Self> {
match s {
"R" => Ok(UserInteraction::Required),
"N" => Ok(UserInteraction::None),
_ => Err(Error::InvalidMetric {
metric_type: Self::TYPE,
value: s.to_owned(),
}),
}
}
}