Struct owapi::v3::stats::OverallStats [] [src]

pub struct OverallStats {
    pub win_rate: f64,
    pub level: u64,
    pub prestige: u64,
    pub avatar: String,
    pub rank_image: Option<String>,
    pub tier: Option<String>,
    pub wins: u64,
    pub games: u64,
    pub comprank: Option<u64>,
    pub losses: u64,
    pub ties: Option<u64>,
}

Overall statistics.

Fields

% of games won.

User's level, excl. prestige ("stars")

The user's numerical level can be calculated using the (prestige * 100) + level formula.

User's prestige ("stars")

The user's numerical level can be calculated using the (prestige * 100) + level formula.

URL to user's avatar (little chooseable image, e.g. a pachimari).

URL to user's portrait.

User's competitive "tier", like "gold" or "bronze".

Amount of games won overall.

Amount of games played overall.

User's SR.

Amount of games lost overall.

Amount of games tied overall.

Trait Implementations

impl Debug for OverallStats
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for OverallStats
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for OverallStats
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.