blue_archive 0.5.2

A Blue Archive api wrapper for Rust, based off of SchaleDB's data: https://github.com/lonqie/SchaleDB
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use serde::{Deserialize, Serialize};

use super::{Rarity, ID};

#[derive(Debug, Deserialize, Serialize, Clone)]
#[serde(rename_all = "PascalCase")]
pub struct Currency {
    #[serde(alias = "Id")]
    pub id: ID,
    pub category: String,
    pub rarity: Rarity,
    pub icon: String,
    pub name: String,
    #[serde(alias = "Desc")]
    pub description: String,
}