Struct butlerd::Responses::Collection[][src]

pub struct Collection {
    pub id: i32,
    pub title: String,
    pub dates: Dates,
    pub games_count: i32,
    pub collection_games: Option<Vec<CollectionGame>>,
    pub user_id: i32,
    pub user: User,
}

Info on a game collection

Fields

Presence depends on whether fetched with fetch_collection or fetch_collection_games

Trait Implementations

impl Debug for Collection
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Collection

impl Sync for Collection