pub struct HallOfFames {
pub players_total: u32,
pub players: Vec<HallOfFamePlayer>,
pub guilds_total: Option<u32>,
pub guilds: Vec<HallOfFameGuild>,
pub fortresses_total: Option<u32>,
pub fortresses: Vec<HallOfFameFortress>,
pub pets_total: Option<u32>,
pub pets: Vec<HallOfFamePets>,
pub hellevator_total: Option<u32>,
pub hellevator: Vec<HallOfFameHellevator>,
pub underworlds_total: Option<u32>,
pub underworlds: Vec<HallOfFameUnderworld>,
}Expand description
Contains information about everything involving other players on the server. This mainly revolves around the Hall of Fame
Fields§
§players_total: u32The amount of accounts on the server
players: Vec<HallOfFamePlayer>A list of hall of fame players fetched during the last command
guilds_total: Option<u32>The amount of guilds on this server. Will only be set after querying the guild Hall of Fame, or looking at your own guild
guilds: Vec<HallOfFameGuild>A list of hall of fame guilds fetched during the last command
fortresses_total: Option<u32>The amount of fortresses on this server. Will only be set after querying the fortress HOF
fortresses: Vec<HallOfFameFortress>A list of hall of fame fortresses fetched during the last command
pets_total: Option<u32>The amount of players with pets on this server. Will only be set after querying the pet HOF
pets: Vec<HallOfFamePets>A list of hall of fame pet players fetched during the last command
hellevator_total: Option<u32>§hellevator: Vec<HallOfFameHellevator>§underworlds_total: Option<u32>The amount of players with underworlds on this server. Will only be set after querying the pet HOF
underworlds: Vec<HallOfFameUnderworld>A list of hall of fame pet players fetched during the last command
Trait Implementations§
Source§impl Clone for HallOfFames
impl Clone for HallOfFames
Source§fn clone(&self) -> HallOfFames
fn clone(&self) -> HallOfFames
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more