use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum ClientType {
#[serde(rename = "web")]
Web,
#[serde(rename = "desktop")]
Desktop,
#[serde(rename = "mobile")]
Mobile,
}
impl std::fmt::Display for ClientType {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
match self {
Self::Web => write!(f, "web"),
Self::Desktop => write!(f, "desktop"),
Self::Mobile => write!(f, "mobile"),
}
}
}
impl Default for ClientType {
fn default() -> ClientType {
Self::Web
}
}