use indexmap::IndexMap; use serde_json::Value; use crate::data_source::DataSource; pub struct PBDataSource; impl DataSource for PBDataSource { fn get_alias(&self) -> &str { "PB" } fn get_champs_with_positions_and_patch( &self, _client: &reqwest::blocking::Client, ) -> (IndexMap>, String) { (IndexMap::new(), String::new()) } fn get_champ_data_with_win_pourcentage( &self, _id: &str, _position: &str, _client: &reqwest::blocking::Client, ) -> Option<(Vec, f64)> { None } }