Struct google_games1::LeaderboardEntry [] [src]

pub struct LeaderboardEntry {
    pub kind: Option<String>,
    pub score_value: Option<String>,
    pub score_tag: Option<String>,
    pub time_span: Option<String>,
    pub formatted_score: Option<String>,
    pub player: Option<Player>,
    pub formatted_score_rank: Option<String>,
    pub score_rank: Option<String>,
    pub write_timestamp_millis: Option<String>,
}

This is a JSON template for the Leaderboard Entry resource.

This type is not used in any activity, and only used as part of another schema.

Fields

Uniquely identifies the type of this resource. Value is always the fixed string games#leaderboardEntry.

The numerical value of this score.

Additional information about the score. Values must contain no more than 64 URI-safe characters as defined by section 2.3 of RFC 3986.

The time span of this high score. Possible values are:
- "ALL_TIME" - The score is an all-time high score. - "WEEKLY" - The score is a weekly high score. - "DAILY" - The score is a daily high score.

The localized string for the numerical value of this score.

The player who holds this score.

The localized string for the rank of this score for this leaderboard.

The rank of this score for this leaderboard.

The timestamp at which this score was recorded, in milliseconds since the epoch in UTC.

Trait Implementations

impl Debug for LeaderboardEntry
[src]

Formats the value using the given formatter.

impl Clone for LeaderboardEntry
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for LeaderboardEntry
[src]

Returns the "default value" for a type. Read more

impl Part for LeaderboardEntry
[src]