[][src]Struct riven::models::summoner_v4::Summoner

pub struct Summoner {
    pub account_id: String,
    pub profile_icon_id: i32,
    pub revision_date: i64,
    pub name: String,
    pub id: String,
    pub puuid: String,
    pub summoner_level: i64,
}

Summoner data object.

Description

represents a summoner

Note: This struct is automatically generated

Fields

account_id: String

Encrypted account ID. Max length 56 characters.

profile_icon_id: i32

ID of the summoner icon associated with the summoner.

revision_date: i64

Date summoner was last modified specified as epoch milliseconds. The following events will update this timestamp: profile icon change, playing the tutorial or advanced tutorial, finishing a game, summoner name change

name: String

Summoner name.

id: String

Encrypted summoner ID. Max length 63 characters.

puuid: String

Encrypted PUUID. Exact length of 78 characters.

summoner_level: i64

Summoner level associated with the summoner.

Trait Implementations

impl Debug for Summoner[src]

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

impl Serialize for Summoner[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.