pub struct Entry {
pub summoner_id: String,
pub summoner_name: String,
pub league_points: i64,
pub rank: String,
pub wins: i64,
pub losses: i64,
pub veteran: bool,
pub inactive: bool,
pub fresh_blood: bool,
pub hot_streak: bool,
pub mini_series: Option<MiniSeries>,
}Fields§
§summoner_id: String§summoner_name: String§league_points: i64§rank: String§wins: i64§losses: i64§veteran: bool§inactive: bool§fresh_blood: bool§hot_streak: bool§mini_series: Option<MiniSeries>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Entry
impl<'de> Deserialize<'de> for Entry
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
impl StructuralPartialEq for Entry
Auto Trait Implementations§
impl Freeze for Entry
impl RefUnwindSafe for Entry
impl Send for Entry
impl Sync for Entry
impl Unpin for Entry
impl UnwindSafe for Entry
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