pub struct MapStatsByToon {
pub current_season: u32,
pub map_stat: HashMap<String, HashMap<String, HashMap<String, MapRaceStats>>>,
}
Fields§
§current_season: u32
§map_stat: HashMap<String, HashMap<String, HashMap<String, MapRaceStats>>>
Implementations§
Source§impl MapStatsByToon
impl MapStatsByToon
pub fn get_map_stats( &self, gamemode: &str, season: &str, map_hash: &str, ) -> Option<&MapRaceStats>
Trait Implementations§
Source§impl Debug for MapStatsByToon
impl Debug for MapStatsByToon
Source§impl<'de> Deserialize<'de> for MapStatsByToon
impl<'de> Deserialize<'de> for MapStatsByToon
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for MapStatsByToon
impl RefUnwindSafe for MapStatsByToon
impl Send for MapStatsByToon
impl Sync for MapStatsByToon
impl Unpin for MapStatsByToon
impl UnwindSafe for MapStatsByToon
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more