osynic_osuapi 0.1.11

High performance, well-structured, extensible Rust osu! API client. Supports both WASM and native environments.
Documentation
use serde::{Deserialize, Serialize};

#[cfg_attr(feature = "export", derive(tsify::Tsify))]
#[cfg_attr(feature = "export", tsify(into_wasm_abi, from_wasm_abi))]
#[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum SearchMode {
    #[serde(rename = "all")]
    #[default]
    All,
    #[serde(rename = "user")]
    User,
    #[serde(rename = "wiki_page")]
    WikiPage,
}

impl SearchMode {
    pub fn as_str(&self) -> &'static str {
        match self {
            SearchMode::All => "All",
            SearchMode::User => "User",
            SearchMode::WikiPage => "WikiPage",
        }
    }
    pub fn to_search_param(&self) -> String {
        match self {
            SearchMode::All => "all".to_string(),
            SearchMode::User => "user".to_string(),
            SearchMode::WikiPage => "wiki_page".to_string(),
        }
    }
}

impl std::fmt::Display for SearchMode {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "{}", self.as_str())
    }
}