1
0
Fork 1
mirror of https://github.com/MingweiSamuel/Riven.git synced 2025-03-17 12:13:16 -07:00
Riven/src/consts/mod.rs

51 lines
864 B
Rust
Raw Normal View History

//! Constant data and Enums used with the Riot Games API.
//!
//! 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-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
mod division;
pub use division::*;
2019-10-25 19:41:41 -07:00
mod game_mode;
pub use game_mode::*;
mod game_type;
pub use game_type::*;
2019-10-25 19:52:43 -07:00
mod map;
pub use map::*;
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::*;
pub mod ranks;
2021-05-21 21:07:31 -07:00
mod route;
pub use route::*;
mod season;
pub use season::*;
2019-10-25 12:44:45 -07: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::*;