[][src]Struct narwhalol::dto::api::LeagueInfo

pub struct LeagueInfo {
    pub queue_type: String,
    pub summoner_name: String,
    pub hot_streak: bool,
    pub wins: i64,
    pub veteran: bool,
    pub losses: i64,
    pub rank: String,
    pub tier: String,
    pub inactive: bool,
    pub fresh_blood: bool,
    pub league_id: String,
    pub summoner_id: String,
    pub league_points: i64,
}

Fields

queue_type: Stringsummoner_name: Stringhot_streak: boolwins: i64veteran: boollosses: i64rank: Stringtier: Stringinactive: boolfresh_blood: boolleague_id: Stringsummoner_id: Stringleague_points: i64

Trait Implementations

impl Clone for LeagueInfo[src]

impl Debug for LeagueInfo[src]

impl<'de> Deserialize<'de> for LeagueInfo[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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.