osynic_osuapi 0.1.10

High performance, well-structured, extensible Rust osu! API client. Supports both WASM and native environments.
Documentation
// {
//       "id": 5,
//       "name": "stable40",
//       "display_name": "Stable",
//       "is_featured": true,
//       "latest_build": {
//         "id": 5778,
//         "version": "20210520.2",
//         "display_version": "20210520.2",
//         "users": 23683,
//         "created_at": "2021-05-20T14:28:04+00:00",
//         "update_stream": {
//           "id": 5,
//           "name": "stable40",
//           "display_name": "Stable",
//           "is_featured": true
//         }
//       },
//       "user_count": 23965
//     },

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 struct Stream {
    pub id: i64,
    pub name: String,
    pub display_name: Option<String>,
    pub is_featured: bool,
    pub latest_build: Option<LatestBuild>,
    pub user_count: Option<i64>,
}

#[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 struct LatestBuild {
    pub id: i64,
    pub version: String,
    pub display_version: String,
    pub users: i64,
    pub created_at: String,
    pub update_stream: UpdateStream,
}

#[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 struct UpdateStream {
    pub id: i64,
    pub name: String,
    pub display_name: Option<String>,
    pub is_featured: bool,
    pub user_count: Option<i64>,
}