[][src]Struct rlstats::Player

pub struct Player {
    pub unique_id: String,
    pub display_name: String,
    pub platform: Platform,
    pub avatar: Option<String>,
    pub profile_url: String,
    pub signature_url: String,
    pub stats: Stats,
    pub ranked_seasons: BTreeMap<String, BTreeMap<String, RankedData>>,
    pub last_requested: i64,
    pub created_at: i64,
    pub updated_at: i64,
    pub next_update_at: i64,
}

A RocketLeague player.

Players will only exist if they have scored at least one goal.

Fields

unique_id: String

Steam 64 ID / PSN Username / Xbox XUID

display_name: Stringplatform: Platformavatar: Option<String>profile_url: Stringsignature_url: Stringstats: Statsranked_seasons: BTreeMap<String, BTreeMap<String, RankedData>>last_requested: i64

This is a unix timestamp.

created_at: i64

This is a unix timestamp.

updated_at: i64

This is a unix timestamp.

next_update_at: i64

This is a unix timestamp.

Trait Implementations

impl Debug for Player[src]

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

Auto Trait Implementations

impl RefUnwindSafe for Player

impl Send for Player

impl Sync for Player

impl Unpin for Player

impl UnwindSafe for Player

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> Instrument 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.