forked from mirror/Riven
1
0
Fork 0
Mingwei Samuel 2021-07-09 12:35:58 -07:00
parent d621daf3e1
commit d72ebba4e3
5 changed files with 10 additions and 3 deletions

View File

@ -34,6 +34,8 @@ pub enum Champion {
#[strum(to_string="Ahri")] Ahri = 103,
/// Akali (`Akali`, 84).
#[strum(to_string="Akali")] Akali = 84,
/// Akshan (`Akshan`, 166).
#[strum(to_string="Akshan")] Akshan = 166,
/// Alistar (`Alistar`, 12).
#[strum(to_string="Alistar")] Alistar = 12,
/// Amumu (`Amumu`, 32).
@ -369,6 +371,7 @@ impl Champion {
Self::Aatrox => "Aatrox",
Self::Ahri => "Ahri",
Self::Akali => "Akali",
Self::Akshan => "Akshan",
Self::Alistar => "Alistar",
Self::Amumu => "Amumu",
Self::Anivia => "Anivia",

View File

@ -241,6 +241,8 @@ pub enum Queue {
NEXUS_BLITZ_NEXUS_BLITZ_DEPRECATED_1200 = 1200,
/// Nexus Blitz games on Nexus Blitz
NEXUS_BLITZ_NEXUS_BLITZ = 1300,
/// Ultimate Spellbook games on Summoner's Rift
SUMMONERS_RIFT_ULTIMATE_SPELLBOOK = 1400,
/// Tutorial 1 games on Summoner's Rift
SUMMONERS_RIFT_TUTORIAL_1 = 2000,
/// Tutorial 2 games on Summoner's Rift

View File

@ -7,7 +7,7 @@
///////////////////////////////////////////////
// http://www.mingweisamuel.com/riotapi-schema/tool/
// Version f60af07c98f05dffdaf81262f9b01f97fe94a3a1
// Version 8fec9617c247f0ee5c96feecc8526fdc9dca0369
//! Automatically generated endpoint handles.

View File

@ -7,7 +7,7 @@
///////////////////////////////////////////////
// http://www.mingweisamuel.com/riotapi-schema/tool/
// Version f60af07c98f05dffdaf81262f9b01f97fe94a3a1
// Version 8fec9617c247f0ee5c96feecc8526fdc9dca0369
//! Metadata about the Riot API and Riven.
//!

View File

@ -7,7 +7,7 @@
///////////////////////////////////////////////
// http://www.mingweisamuel.com/riotapi-schema/tool/
// Version f60af07c98f05dffdaf81262f9b01f97fe94a3a1
// Version 8fec9617c247f0ee5c96feecc8526fdc9dca0369
//! Data transfer structs.
//!
@ -1719,6 +1719,8 @@ pub mod match_v5 {
pub queue_id: crate::consts::Queue,
#[serde(rename = "teams")]
pub teams: std::vec::Vec<MatchInfoTeam>,
#[serde(rename = "tournamentCode")]
pub tournament_code: Option<String>,
}
/// MatchTimelineInfoFrameEvent data object.
#[derive(Debug)]