[][src]Struct riven::models::league_v4::LeagueItem

pub struct LeagueItem {
    pub fresh_blood: bool,
    pub wins: i32,
    pub summoner_name: String,
    pub mini_series: Option<MiniSeries>,
    pub inactive: bool,
    pub veteran: bool,
    pub hot_streak: bool,
    pub rank: Division,
    pub league_points: i32,
    pub losses: i32,
    pub summoner_id: String,
}

LeagueItem data object.

Fields

fresh_blood: boolwins: i32

Winning team on Summoners Rift.

summoner_name: Stringmini_series: Option<MiniSeries>inactive: boolveteran: boolhot_streak: boolrank: Divisionleague_points: i32losses: i32

Losing team on Summoners Rift.

summoner_id: String

Player's encrypted summonerId.

Trait Implementations

impl Debug for LeagueItem[src]

impl<'de> Deserialize<'de> for LeagueItem[src]

impl Serialize for LeagueItem[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.