brawl-rs 0.1.0

A Rust wrapper for the Brawl Stars API
Documentation
//! Data structures representing Brawl Stars game entities.
//!
//! This module contains all the structs used to represent data returned by the Brawl Stars API:
//!
//! - [`player`] - Player profiles and their brawlers
//! - [`club`] - Club information and members
//! - [`brawlers`] - Brawler data and abilities
//! - [`events`] - Game modes and event rotations
//! - [`rankings`] - Top-ranked clubs and players by region
//! - [`battle_log`] - Battle history and match results

#[cfg(feature = "player")]
pub mod player;

#[cfg(feature = "club")]
pub mod club;

#[cfg(feature = "events")]
pub mod events;

#[cfg(feature = "brawlers")]
pub mod brawlers;

#[cfg(feature = "rankings")]
pub mod rankings;

#[cfg(feature = "battle_log")]
pub mod battle_log;

pub mod common;