osynic_osuapi 0.1.10

High performance, well-structured, extensible Rust osu! API client. Supports both WASM and native environments.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// ChangelogListing

use serde::{Deserialize, Serialize};

use crate::v2::model::changelog::structs::build::ChanglogBuild;
use crate::v2::model::changelog::structs::search::Search;
use crate::v2::model::changelog::structs::stream::Stream;

#[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 ChangelogListing {
    pub streams: Vec<Stream>,
    pub builds: Vec<ChanglogBuild>,
    #[cfg_attr(feature = "export", tsify(type = "SearchInChangelog"))]
    pub search: Search,
}