2020-02-01 13:35:37 -08:00
|
|
|
//! Constant data and Enums used with the Riot Games API.
|
2019-10-27 01:52:55 -07:00
|
|
|
//!
|
|
|
|
//! This module uses SCREAMING_SNAKE_CASE for enum variants, as enums in this
|
|
|
|
//! crate should be considered collections of constants.
|
|
|
|
|
|
|
|
#![allow(deprecated)]
|
|
|
|
#![allow(non_camel_case_types)]
|
2019-10-23 00:39:40 -07:00
|
|
|
|
2019-10-25 22:19:00 -07:00
|
|
|
mod macro_serde_string;
|
|
|
|
|
2019-10-23 00:49:02 -07:00
|
|
|
mod champion;
|
2019-10-20 19:28:29 -07:00
|
|
|
pub use champion::*;
|
2019-10-23 00:49:02 -07:00
|
|
|
|
2019-10-25 13:37:23 -07:00
|
|
|
mod division;
|
|
|
|
pub use division::*;
|
|
|
|
|
2019-10-25 19:41:41 -07:00
|
|
|
mod game_mode;
|
|
|
|
pub use game_mode::*;
|
|
|
|
|
2019-10-25 19:38:08 -07:00
|
|
|
mod game_type;
|
|
|
|
pub use game_type::*;
|
|
|
|
|
2019-10-25 19:52:43 -07:00
|
|
|
mod map;
|
|
|
|
pub use map::*;
|
|
|
|
|
2019-10-25 13:37:23 -07:00
|
|
|
mod queue_type;
|
|
|
|
pub use queue_type::*;
|
2019-10-23 01:20:34 -07:00
|
|
|
|
|
|
|
mod queue;
|
2019-10-25 12:30:03 -07:00
|
|
|
pub use queue::*;
|
|
|
|
|
2020-02-01 13:35:37 -08:00
|
|
|
pub mod ranks;
|
|
|
|
|
2021-05-21 21:07:31 -07:00
|
|
|
mod route;
|
|
|
|
pub use route::*;
|
|
|
|
|
2019-10-25 13:37:23 -07:00
|
|
|
mod season;
|
|
|
|
pub use season::*;
|
2019-10-25 12:44:45 -07:00
|
|
|
|
2020-02-01 13:35:37 -08:00
|
|
|
/// Trait allowing iteration of enum types, implemented by several enums in this module.
|
|
|
|
/// Re-exported from strum.
|
|
|
|
///
|
|
|
|
///
|
|
|
|
pub use strum::IntoEnumIterator;
|
|
|
|
|
2019-10-25 12:30:03 -07:00
|
|
|
mod team;
|
2019-10-25 12:44:45 -07:00
|
|
|
pub use team::*;
|
2019-10-25 19:24:08 -07:00
|
|
|
|
|
|
|
mod tier;
|
|
|
|
pub use tier::*;
|