igdb 0.1.2

IGDB - Video Game Database Api
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use crate::model::enums::{Rating, RatingCategory};

#[derive(Deserialize, Debug, Clone)]
pub struct AgeRating {
    #[serde(default)]
    pub id: usize,
    #[serde(default)]
    pub category: RatingCategory,
    #[serde(default)]
    pub content_descriptions: Vec<usize>,
    pub rating: Rating,
    #[serde(default)]
    pub rating_cover_url: String,
    #[serde(default)]
    pub synopsis: String,
}